We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I logrotate my monolog files, so that a few of them are gzipped. Could it be possible to add support for gzipped logs in the viewer?
I cannot make you a pull request because of the current state of master, but here is the code I already use on my machine (from 4.0.2):
in LogFile.php:60: $file = $this->filesystem->read($this->args['path']); if (pathinfo($this->args['path'])['extension'] === 'gz') { $file = gzdecode($file); }
$file = $this->filesystem->read($this->args['path']);
if (pathinfo($this->args['path'])['extension'] === 'gz') {
$file = gzdecode($file);
}
Thanks, Regards,
Nicolas
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I logrotate my monolog files, so that a few of them are gzipped.
Could it be possible to add support for gzipped logs in the viewer?
I cannot make you a pull request because of the current state of master, but here is the code I already use on my machine (from 4.0.2):
in LogFile.php:60:
$file = $this->filesystem->read($this->args['path']);
if (pathinfo($this->args['path'])['extension'] === 'gz') {
$file = gzdecode($file);
}
Thanks,
Regards,
Nicolas
The text was updated successfully, but these errors were encountered: