Download the PHP package phossa2/logger without Composer
On this page you can find all versions of the php package phossa2/logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package logger
phossa2/logger [ABANDONED]
PLEASE USE phoole/logger library instead
phossa2/logger is a PSR-3 compliant logging library. It is a rewrite of Monolog with couple of changes.
It requires PHP 5.4, supports PHP 7.0+ and HHVM. It is compliant with PSR-1, PSR-2, PSR-3, PSR-4, and the proposed PSR-5.
Installation
Install via the composer
utility.
or add the following lines to your composer.json
Usage
Create the logger instance with default channel,
Features
-
Creative usage of channels.
Handler
andProcessor
now can be bound to different channels, also with channel name globbing.- Channel globbing
By default, handlers and processors are bound to
'*'
channel which globs to all. But they also can be bound to channels like'user.*'
or more specific one'user.login'
.log messages can be sent to specific channels by using of
with()
in front of any logging related methods, such aslog()
,warning()
etc.The
info()
method in the previous code will trigger user info being inserted into context array by theUserProcessor
and being logged to file/log/user.log
.Note: Channel names are case insensitive.
Note: Same handler or processor can be bound to different channels. But will be executed only ONCE in one log call.
- Single logger
With the support for logging to different channels, there is no need to create multiple loggers in one application. By carefully designing your channel hierachy, you may use one logger through out your site.
-
Handlers and processors are now can injected into the logger with different priorities (range from
-100
to100
, default is0
).-
Higher priority means executed first
- First in first out(executed) for same priority
Default priority value is
0
. The following handlers executed in the order of their addition. -
-
Handlers, formatters, processors are now all using the single interface
Which means, user may use predefined functions or other callables to servce as handler, formatter or processor, as long as these callables take the
LogEntryInterface
as the parameter.A quick handler as follows,
Or even,
-
In stead of using array as data type for the log message. The
LogEntryInterface
is defined to serve as default data type for logs.You may even extend the
LogEntry
class, and use it in your loggerUse it in your logger as the prototype for all log messages,
APIs
-
See PSR-3 for standard related APIs.
-
__construct(string $defaultChannel = 'LOGGER', LogEntryInterface $logPrototype = null)
Create the logger.
with(string $channel): $this
Specify the channel for the comming logging method.
addHandler(string $level, callable $handler, string $channel = '*', int $priority = 0): $this
Add one handler to specified channel with the priority.
addProcessor(callable $processor, string $channel = '*', int $priority = 0): $this
Add one processor to specified channel with the priority.
removeHandler(callable|string $handlerOrClassname, $channel = '')
Remove the handler (or specify handler's classname) from the specified channel. If
$channel
is empty, then remove from all channels.removeProcessor(callable|string $processorOrClassname, $channel = '')
Remove the processor (or specify processor's classname) from the specified channel. If
$channel
is empty, then remove from all channels.
Change log
Please see CHANGELOG from more information.
Testing
Contributing
Please see CONTRIBUTE for more information.
Dependencies
-
PHP >= 5.4.0
- phossa2/shared >= 2.0.21