Added -Level => 9 with the gzip compression.
This commit is contained in:
parent
c4b29f0099
commit
37de9cf319
8
arclog
8
arclog
@ -1620,7 +1620,7 @@ sub open_write : method {
|
|||||||
}
|
}
|
||||||
($self->{"file"}, $self->{"FH"}) = ($file, $FH);
|
($self->{"file"}, $self->{"FH"}) = ($file, $FH);
|
||||||
print STDERR " Attaching file with IO::Compress::Gzip ... " if $VERBOSE > 2;
|
print STDERR " Attaching file with IO::Compress::Gzip ... " if $VERBOSE > 2;
|
||||||
$self->{"gz"} = IO::Compress::Gzip->new($FH)
|
$self->{"gz"} = IO::Compress::Gzip->new($FH, -Level => 9)
|
||||||
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
||||||
print STDERR "done\n" if $VERBOSE > 2;
|
print STDERR "done\n" if $VERBOSE > 2;
|
||||||
return;
|
return;
|
||||||
@ -1665,7 +1665,7 @@ sub open_append : method {
|
|||||||
or die "$THIS_FILE: tempfile: $IO::Uncompress::Gunzip::GunzipError";
|
or die "$THIS_FILE: tempfile: $IO::Uncompress::Gunzip::GunzipError";
|
||||||
print STDERR "done\n" if $VERBOSE > 2;
|
print STDERR "done\n" if $VERBOSE > 2;
|
||||||
print STDERR " Attaching file with IO::Compress::Gzip ... " if $VERBOSE > 2;
|
print STDERR " Attaching file with IO::Compress::Gzip ... " if $VERBOSE > 2;
|
||||||
$gz = IO::Compress::Gzip->new($FH)
|
$gz = IO::Compress::Gzip->new($FH, -Level => 9)
|
||||||
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
||||||
print STDERR "done\n" if $VERBOSE > 2;
|
print STDERR "done\n" if $VERBOSE > 2;
|
||||||
|
|
||||||
@ -1682,7 +1682,7 @@ sub open_append : method {
|
|||||||
# A whole new file
|
# A whole new file
|
||||||
} else {
|
} else {
|
||||||
print STDERR " Attaching file with IO::Compress::Gzip ... " if $VERBOSE > 2;
|
print STDERR " Attaching file with IO::Compress::Gzip ... " if $VERBOSE > 2;
|
||||||
$gz = IO::Compress::Gzip->new($FH)
|
$gz = IO::Compress::Gzip->new($FH, -Level => 9)
|
||||||
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
||||||
print STDERR "done\n" if $VERBOSE > 2;
|
print STDERR "done\n" if $VERBOSE > 2;
|
||||||
}
|
}
|
||||||
@ -1724,7 +1724,7 @@ sub close : method {
|
|||||||
|
|
||||||
# Create empty compressed content
|
# Create empty compressed content
|
||||||
print STDERR " Applying empty compressed content ... " if $VERBOSE > 2;
|
print STDERR " Applying empty compressed content ... " if $VERBOSE > 2;
|
||||||
$_ = IO::Compress::Gzip->new($FH)
|
$_ = IO::Compress::Gzip->new($FH, -Level => 9)
|
||||||
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
||||||
$_->close or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
$_->close or die "$THIS_FILE: $file: $IO::Compress::Gzip::GzipError";
|
||||||
undef $_;
|
undef $_;
|
||||||
|
Loading…
Reference in New Issue
Block a user