2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-28 20:53:35 +08:00

firmware: fix typo in UART logger

This commit is contained in:
Chris Ballance 2018-05-28 18:14:22 +01:00 committed by whitequark
parent 2b7d98eb04
commit b860302a9a

View File

@ -9,7 +9,7 @@ pub struct ConsoleLogger;
impl ConsoleLogger {
pub fn register() {
static LOGGER: ConsoleLogger = ConsoleLogger;
set_logger(&LOGGER).expect("global logger can only be initialized once")
set_logger(&LOGGER).expect("global logger can only be initialized once");
set_max_level(LevelFilter::Trace);
}
}