vault / seldaek-monolog / 1.18.0
seldaek-monolog @ 1.18.0
integrity
- size
- 210.2 KiB
- downloaded
- last checked
- overlays
- composer
- detected
- composer monolog/monolog
release notes
- Added optional reduction of timestamp precision via
Logger->useMicrosecondTimestamps(false), disabling it gets you a bit of performance boost but reduces the precision to the second instead of microsecond - Added possibility to skip some extra stack frames in IntrospectionProcessor if you have some library wrapping Monolog that is always adding frames
- Added
Logger->withNameto clone a logger (keeping all handlers) with a new name - Added FluentdFormatter for the Fluentd unix socket protocol
- Added HandlerWrapper base class to ease the creation of handler wrappers, just extend it and override as needed
- Added support for replacing context sub-keys using
%context.*%in LineFormatter - Added support for
payloadcontext value in RollbarHandler - Added setRelease to RavenHandler to describe the application version, sent with every log
- Added support for
fingerprintcontext value in RavenHandler - Fixed JSON encoding errors that would gobble up the whole log record, we now handle those more gracefully by dropping chars as needed
- Fixed write timeouts in SocketHandler and derivatives, set to 10sec by default, lower it with
setWritingTimeout() - Fixed PHP7 compatibility with regard to Exception/Throwable handling in a few places
download
unix · zip
curl -fL -o 1.18.0.zip https://ratatoskr.space/pkg/seldaek-monolog/1.18.0.zip
printf '%s %s\n' '2155eb4ddddff5be9f903a548b5f3b12d19c727cd45da1b5acc716d6dd85c9e8' '1.18.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/seldaek-monolog/1.18.0.zip"
$out = "1.18.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2155eb4ddddff5be9f903a548b5f3b12d19c727cd45da1b5acc716d6dd85c9e8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 1.18.0.tar.gz https://ratatoskr.space/pkg/seldaek-monolog/1.18.0.tar.gz
printf '%s %s\n' '8855149095a4bd4db2b3c02874c85491b320de268d51be4d357b711fe65e66ba' '1.18.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/seldaek-monolog/1.18.0.tar.gz"
$out = "1.18.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8855149095a4bd4db2b3c02874c85491b320de268d51be4d357b711fe65e66ba") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 1.18.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/1.18.0.zip
printf '%s %s\n' '2155eb4ddddff5be9f903a548b5f3b12d19c727cd45da1b5acc716d6dd85c9e8' '1.18.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/1.18.0.zip"
$out = "1.18.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2155eb4ddddff5be9f903a548b5f3b12d19c727cd45da1b5acc716d6dd85c9e8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 1.18.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/1.18.0.tar.gz
printf '%s %s\n' '8855149095a4bd4db2b3c02874c85491b320de268d51be4d357b711fe65e66ba' '1.18.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/1.18.0.tar.gz"
$out = "1.18.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8855149095a4bd4db2b3c02874c85491b320de268d51be4d357b711fe65e66ba") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 1.18.0.zip | zip | 213.5 KiB |
blake3-24 451c9477c94e176c74f76ea0c72145dbcf387aa388ebebe4
sha256 2155eb4ddddff5be9f903a548b5f3b12d19c727cd45da1b5acc716d6dd85c9e8
sha1 c392f980d01aaad56b7cc7221efea272558750f2
|
| 1.18.0.tar.gz | tar.gz | 108.1 KiB |
blake3-24 db46e896d81b7b61a770e75eb533e9327ee728cdc92fd823
sha256 8855149095a4bd4db2b3c02874c85491b320de268d51be4d357b711fe65e66ba
sha1 0894bd5e452f2f74e8f81d90daaf9a5e8c4cd810
|
install
bazel
http_archive(
name = "seldaek-monolog",
urls = ["https://ratatoskr.space/pkg/seldaek-monolog/1.18.0.tar.gz"],
integrity = "sha256-iFUUkJWkvU2ys8AodMhUkbMg3iaNUb5NNXtxH+ZeZro=",
strip_prefix = "seldaek-monolog-1.18.0",
)
zig
.url = "https://ratatoskr.space/pkg/seldaek-monolog/1.18.0.tar.gz",
composer
composer config repositories.yggvault composer https://ratatoskr.space/pkg composer require monolog/monolog:1.18.0
install via yggdrasil mesh
bazel
http_archive(
name = "seldaek-monolog",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/1.18.0.tar.gz"],
integrity = "sha256-iFUUkJWkvU2ys8AodMhUkbMg3iaNUb5NNXtxH+ZeZro=",
strip_prefix = "seldaek-monolog-1.18.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/1.18.0.tar.gz",
composer
composer config secure-http false composer config repositories.yggvault composer http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg composer require monolog/monolog:1.18.0