From 9c3394794e680e279f033e7b4794362a32d65041 Mon Sep 17 00:00:00 2001 From: whitequark Date: Fri, 7 Oct 2016 14:24:12 +0000 Subject: [PATCH] runtime: cap log level at debug. --- artiq/runtime.rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/runtime.rs/Cargo.toml b/artiq/runtime.rs/Cargo.toml index 725da7533..29d415a15 100644 --- a/artiq/runtime.rs/Cargo.toml +++ b/artiq/runtime.rs/Cargo.toml @@ -16,7 +16,7 @@ path = "src/lib.rs" std_artiq = { path = "libstd_artiq" } lwip = { path = "liblwip", default-features = false } fringe = { version = "= 1.1.0", default-features = false, features = ["alloc"] } -log = { version = "0.3", default-features = false } +log = { version = "0.3", default-features = false, features = ["max_level_debug"] } log_buffer = { version = "1.0" } byteorder = { version = "0.5", default-features = false }