Download the PHP package activecollab/logger without Composer
On this page you can find all versions of the php package activecollab/logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download activecollab/logger
More information about activecollab/logger
Files in activecollab/logger
Package logger
Short Description PSR-3 logger that is easy to plug in Active Collab components
License MIT
Homepage https://labs.activecollab.com
Informations about the package logger
Logger
This package implements some of our internal conventions on top of PSR-3. Logger that it publishes is fully PSR-3 comptabile with some extra functionality (optional), as well as a factory that makes logger creation easy:
Once logger is set, you can use it like any other PSR-3 logger:
Special loggers are:
- Event logging using
LoggerInterface::event()
method. This will log a named event on info level, and set event context attribute to event name, - Request summary logging using
LoggerInterface::requestSummary()
method. This will log some interesting request data, like executing time, total queries and query count etc.
Loggers
Packages comes with following backends implemented:
LoggerInterface::FILE
- Log to files in log directory. Log directory is required as first logger argument when creating a logger:
Second argument is log file name, and it is optional. When skipped, system will log to log.txt
file in the specified folder.
Third argument is file permissions level. Default is 0644 when skipped, but you can specify any value (in octal notation).
Note that we set rotating file logging, where only past 7 days of logs are kept.
LoggerInterface::GRAYLOG
- Log messages are sent to Graylog2 server using GELF formatter. Additional arguments are Graylog2 server host and port. If they are skipped, 127.0.0.1 and are used:
LoggerInterface::BLACKHOLE
- Messages are not logged anywhere.
Message Buffering
Logger is built to buffer messages until request details are set (using setAppRequest()
method). Reason why we delay writing to log is to be able to add request details to all messages, so we can connect the dots alter on:
If request is not set, buffer will not be flushed unless you flush it yourself, or register a shutdown function:
Application Details
This package always logs application name, version and environemnt. These arguments are required and they need to be provided to FactoryInterface::create()
method, when creating new logger instance:
Environment arguments are sent as context arguments with all messages captured via logger instance. User can specify additional environment arguments, using FactoryInterface::setAdditionalEnvArguments()
method:
Exception Serialization
When exceptions are passed as context arguments, package will "explode" them to a group of relevant arguments: message, file, line, code, and trace. Previous exception is also extracted, when available:
If you have special exceptions that collect more info than message, code, file, line, trace and previous, you can register a callback that will extract that data as well:
Callback gets three arguments:
$argument_name
- contenxt argument name under which we found the exception,$exception_name
- exception itself,$context
- access to resulting log message context arguments.
As with additional environment variables, exception serializers can be added to factory, and factory will pass it on to all loggers that it produces:
Error Handling
Logger comes equiped with a class that can register error and exception handlers and direct them to the log. Quick setup:
To restore error and exception handled, simply call restore()
method:
Handler can be configured to do different things for diffent error levels. For example, you can configure it to throw an exception on PHP warning, or to silence an event all together:
By default, exceptions are logged and re-thrown. This behavior can be turned off: