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
gunzip the zipped log file occurs error like this:
And this is the log init function:
The text was updated successfully, but these errors were encountered:
$ hexdump -C -n2 my.log.gz 00000000 1f 8b |..| 00000002 $ file my.log.gz my.log.gz: gzip compressed data, original size modulo 2^32 1413
gzip files start with 0x1F, 0x1B (see also "Magic number" on https://en.wikipedia.org/wiki/Gzip). Do your files have the same start bytes?
Sorry, something went wrong.
$ hexdump -C -n2 my.log.gz 00000000 1f 8b |..| 00000002 $ file my.log.gz my.log.gz: gzip compressed data, original size modulo 2^32 1413 gzip files start with 0x1F, 0x1B (see also "Magic number" on https://en.wikipedia.org/wiki/Gzip). Do your files have the same start bytes?
No, brother, I get this:
$ hexdump -C -n2 **.log.gz 00000000 00 00 00000002 $ file **.log.gz **.log.gz: data
No branches or pull requests
gunzip the zipped log file occurs error like this:
And this is the log init function:
The text was updated successfully, but these errors were encountered: