LOG_DEBUG by default for now

This commit is contained in:
Jude Nelson
2020-05-12 11:09:25 -04:00
parent 09cafc4881
commit 5e939c831f

View File

@@ -44,7 +44,7 @@ pub const LOG_TRACE : u8 = 1;
// per-thread log level and log format
thread_local!(static loglevel: RefCell<u8> = RefCell::new(LOG_INFO));
thread_local!(static loglevel: RefCell<u8> = RefCell::new(LOG_DEBUG));
pub fn set_loglevel(ll: u8) -> Result<(), String> {
loglevel.with(move |level| {