about summary refs log tree commit diff
path: root/src/rt/rust_log.cpp
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2010-07-20 18:38:06 -0700
committerGraydon Hoare <graydon@mozilla.com>2010-07-20 18:38:06 -0700
commitaca5082273a6f43cbaa8161ab3538d05b1c1a260 (patch)
treed5a687f33cf250d0547175b47621fd1a08a441f8 /src/rt/rust_log.cpp
parent9c81889ad258c34635532dc7017d1c2b831230b8 (diff)
downloadrust-aca5082273a6f43cbaa8161ab3538d05b1c1a260.tar.gz
rust-aca5082273a6f43cbaa8161ab3538d05b1c1a260.zip
Back out "::ALL" default logbits.
Diffstat (limited to 'src/rt/rust_log.cpp')
-rw-r--r--src/rt/rust_log.cpp2
1 files changed, 1 insertions, 1 deletions
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;