X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Futil%2Flogger.rs;h=df2b7f704051958a1e8ddc63523108061c8cfb08;hb=ec3739b7a2ff05ae1c122ceeb5466d082491e39b;hp=2cf0f13633661a5ae6eed6ed180ddc3978fdaa26;hpb=b6de28182f275516c142991b70c36416a50fae50;p=rust-lightning diff --git a/lightning/src/util/logger.rs b/lightning/src/util/logger.rs index 2cf0f136..df2b7f70 100644 --- a/lightning/src/util/logger.rs +++ b/lightning/src/util/logger.rs @@ -14,8 +14,8 @@ //! The second one, client-side by implementing check against Record Level field. //! Each module may have its own Logger or share one. -use std::cmp; -use std::fmt; +use core::cmp; +use core::fmt; static LOG_LEVEL_NAMES: [&'static str; 6] = ["OFF", "ERROR", "WARN", "INFO", "DEBUG", "TRACE"];