aboutsummaryrefslogtreecommitdiff
path: root/src/rt
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-07-20 18:38:06 -0700
committerGraydon Hoare <[email protected]>2010-07-20 18:38:06 -0700
commitaca5082273a6f43cbaa8161ab3538d05b1c1a260 (patch)
treed5a687f33cf250d0547175b47621fd1a08a441f8 /src/rt
parentAdd a (coarse, first-pass) deque implementation to stdlib. (diff)
downloadrust-aca5082273a6f43cbaa8161ab3538d05b1c1a260.tar.xz
rust-aca5082273a6f43cbaa8161ab3538d05b1c1a260.zip
Back out "::ALL" default logbits.
Diffstat (limited to 'src/rt')
-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 b67876eb..cd362cc8 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;