Yii Logging Library package was updated with the following enhancements and new features:
- added new static methods
Logger::assertLevelIsValid()
,Logger::assertLevelIsString()
andLogger::assertLevelIsSupported()
; - added support of nested values in message templates' variables, e. g.
{foo.bar}
; - added context providers;
- added
DateTime
andDateTimeImmutable
support as time in log context; - added
Message::category()
method andMessage::DEFAULT_CATEGORY
constant, deprecateCategoryFilter::DEFAULT
in favor it; - added
Message::trace()
method; - added
Message::time()
method; - deprecated method
Logger::validateLevel()
; - deprecated
Logger
methodssetTraceLevel()
andsetExcludedTracePaths()
in favor of context provider usage; - deprecated methods
setCommonContext()
andgetCommonContext()
inTarget
class; - replaced
gettype()
toget_debug_type()
in exception messages generation; - changed the type of the
$level
parameter in theMessage
constructor tostring
; - fixed error on parse messages, that contains variables that cannot cast to a string;
- fixed error on formatting trace, when it doesn't contain "file" and "line".