Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
设置触发log压缩大小为由4m改回1mb
  • Loading branch information
SeaLoong committed Sep 24, 2020
1 parent 96968dd commit ccfd54e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drcom4scut"
version = "0.2.2"
version = "0.2.3"
authors = ["SeaLoong <984391132@qq.com>"]
edition = "2018"
description = "A 3rd-party Drcom client for SCUT."
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn init_logger(settings: &Settings) {
.build(
directory.clone() + "/latest.log",
Box::new(CompoundPolicy::new(
Box::new(SizeTrigger::new(1 << 22)),
Box::new(SizeTrigger::new(1 << 20)),
Box::new(
FixedWindowRoller::builder()
.base(1)
Expand Down

0 comments on commit ccfd54e

Please sign in to comment.