vault / seldaek-monolog / 2.4.0
seldaek-monolog @ 2.4.0
integrity
- size
- 173.5 KiB
- downloaded
- last checked
- overlays
- composer
- detected
- composer monolog/monolog
release notes
- Added
Monolog\LogRecordinterface that can be used to type-hint records likearray|\Monolog\LogRecord $recordto be forward compatible with the upcoming Monolog 3 changes - Added
includeStacktracesconstructor params to LineFormatter & JsonFormatter (#1603) - Added
persistent,timeout,writingTimeout,connectionTimeout,chunkSizeconstructor params to SocketHandler and derivatives (#1600) - Added
AsMonologProcessorPHP attribute which can help autowiring / autoconfiguration of processors if frameworks / integrations decide to make use of it. This is useless when used purely with Monolog (#1637) - Added support for keeping native BSON types as is in MongoDBFormatter (#1620)
- Added support for a
user_agentkey in WebProcessor, disabled by default but you can use it by configuring the $extraFields you want (#1613) - Added support for username/userIcon in SlackWebhookHandler (#1617)
- Added extension points to BrowserConsoleHandler (#1593)
- Added record message/context/extra info to exceptions thrown when a StreamHandler cannot open its stream to avoid completely losing the data logged (#1630)
- Fixed error handler signature to accept a null $context which happens with internal PHP errors (#1614)
- Fixed a few setter methods not returning
self(#1609) - Fixed handling of records going over the max Telegram message length (#1616)
download
unix · zip
curl -fL -o 2.4.0.zip https://ratatoskr.space/pkg/seldaek-monolog/2.4.0.zip
printf '%s %s\n' 'ea345181a4bd25c37109513fc865cf69fcc4597901f2f8b8f1dce45b1c11ecb8' '2.4.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/seldaek-monolog/2.4.0.zip"
$out = "2.4.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ea345181a4bd25c37109513fc865cf69fcc4597901f2f8b8f1dce45b1c11ecb8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 2.4.0.tar.gz https://ratatoskr.space/pkg/seldaek-monolog/2.4.0.tar.gz
printf '%s %s\n' '49af37d03812f577997a918c334f09902cc815304a5cfb55fd9bbb67271c3a70' '2.4.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/seldaek-monolog/2.4.0.tar.gz"
$out = "2.4.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "49af37d03812f577997a918c334f09902cc815304a5cfb55fd9bbb67271c3a70") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 2.4.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/2.4.0.zip
printf '%s %s\n' 'ea345181a4bd25c37109513fc865cf69fcc4597901f2f8b8f1dce45b1c11ecb8' '2.4.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/2.4.0.zip"
$out = "2.4.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ea345181a4bd25c37109513fc865cf69fcc4597901f2f8b8f1dce45b1c11ecb8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 2.4.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/2.4.0.tar.gz
printf '%s %s\n' '49af37d03812f577997a918c334f09902cc815304a5cfb55fd9bbb67271c3a70' '2.4.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/2.4.0.tar.gz"
$out = "2.4.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "49af37d03812f577997a918c334f09902cc815304a5cfb55fd9bbb67271c3a70") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 2.4.0.zip | zip | 175.2 KiB |
blake3-24 e508d6392b2b7a7c74d6661f72c3ad05c461af0506504a68
sha256 ea345181a4bd25c37109513fc865cf69fcc4597901f2f8b8f1dce45b1c11ecb8
sha1 b317cbac8618f1704b7d5667186767fb1b504f22
|
| 2.4.0.tar.gz | tar.gz | 95.8 KiB |
blake3-24 791858bf03d445cd0e7559069406000463abd3c6e88bb7d9
sha256 49af37d03812f577997a918c334f09902cc815304a5cfb55fd9bbb67271c3a70
sha1 e855e93033c4c1fdbf16f9343e9678b212c8e490
|
install
bazel
http_archive(
name = "seldaek-monolog",
urls = ["https://ratatoskr.space/pkg/seldaek-monolog/2.4.0.tar.gz"],
integrity = "sha256-Sa830DgS9XeZepGMM08JkCzIFTBKXPtV/Zu7ZyccOnA=",
strip_prefix = "seldaek-monolog-2.4.0",
)
zig
.url = "https://ratatoskr.space/pkg/seldaek-monolog/2.4.0.tar.gz",
composer
composer config repositories.yggvault composer https://ratatoskr.space/pkg composer require monolog/monolog:2.4.0
install via yggdrasil mesh
bazel
http_archive(
name = "seldaek-monolog",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/2.4.0.tar.gz"],
integrity = "sha256-Sa830DgS9XeZepGMM08JkCzIFTBKXPtV/Zu7ZyccOnA=",
strip_prefix = "seldaek-monolog-2.4.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/seldaek-monolog/2.4.0.tar.gz",
composer
composer config secure-http false composer config repositories.yggvault composer http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg composer require monolog/monolog:2.4.0