From 5e939c831fd8eb8bbfa7e7fb719e0dfbc79274f8 Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Tue, 12 May 2020 11:09:25 -0400 Subject: [PATCH] LOG_DEBUG by default for now --- src/util/log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/log.rs b/src/util/log.rs index bb4c6ea41..e29dcc44a 100644 --- a/src/util/log.rs +++ b/src/util/log.rs @@ -44,7 +44,7 @@ pub const LOG_TRACE : u8 = 1; // per-thread log level and log format -thread_local!(static loglevel: RefCell = RefCell::new(LOG_INFO)); +thread_local!(static loglevel: RefCell = RefCell::new(LOG_DEBUG)); pub fn set_loglevel(ll: u8) -> Result<(), String> { loglevel.with(move |level| {