From aca5082273a6f43cbaa8161ab3538d05b1c1a260 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Tue, 20 Jul 2010 18:38:06 -0700 Subject: [PATCH] Back out "::ALL" default logbits. --- src/rt/rust_log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rt/rust_log.cpp b/src/rt/rust_log.cpp index b67876ebe6a..cd362cc8a48 100644 --- a/src/rt/rust_log.cpp +++ b/src/rt/rust_log.cpp @@ -10,7 +10,7 @@ static uint32_t read_type_bit_mask() { - uint32_t bits = rust_log::ULOG | rust_log::ERR | rust_log::ALL; + uint32_t bits = rust_log::ULOG | rust_log::ERR; char *env_str = getenv("RUST_LOG"); if (env_str) { bits = 0;