Skip to content

Commit

Permalink
pub use logger
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuxiujia committed Aug 4, 2022
1 parent 3c480ca commit 65fc020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [

[package]
name = "fast_log"
version = "1.5.23"
version = "1.5.24"
description = "Rust async log High-performance asynchronous logging"
readme = "Readme.md"
authors = ["ce <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/fast_log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl Log for Logger {
}

static CHAN_LEN: AtomicI64 = AtomicI64::new(-1);
static LOGGER: Lazy<Logger> = Lazy::new(|| Logger {
pub static LOGGER: Lazy<Logger> = Lazy::new(|| Logger {
level: AtomicI32::new(1),
chan: Chan::new({
let len = CHAN_LEN.load(Ordering::SeqCst);
Expand Down

0 comments on commit 65fc020

Please sign in to comment.