about summary refs log tree commit diff
path: root/src/libstd/std.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-09 10:41:05 -0700
committerbors <bors@rust-lang.org>2013-09-09 10:41:05 -0700
commit059cbaadfaea9a397c144a0a7beff0fc5e9e2664 (patch)
treeaa520ddc411d71091bd8c1089bda4f69092fed26 /src/libstd/std.rs
parentfd2488bf5aeb1c4959bc91f3a17a0bde848d2eeb (diff)
parent8a966183fe5129ea2a55a9898ac1bd0f16f3573d (diff)
downloadrust-059cbaadfaea9a397c144a0a7beff0fc5e9e2664.tar.gz
rust-059cbaadfaea9a397c144a0a7beff0fc5e9e2664.zip
auto merge of #9005 : alexcrichton/rust/rusty-log, r=brson
Also redefine all of the standard logging macros to use more rust code instead
of custom LLVM translation code. This makes them a bit easier to understand, but
also more flexibile for future types of logging.

Additionally, this commit removes the LogType language item in preparation for
changing how logging is performed.
Diffstat (limited to 'src/libstd/std.rs')
-rw-r--r--src/libstd/std.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/std.rs b/src/libstd/std.rs
index 65fd24b7219..d78ea9f0093 100644
--- a/src/libstd/std.rs
+++ b/src/libstd/std.rs
@@ -218,6 +218,7 @@ mod std {
     pub use option;
     pub use kinds;
     pub use local_data;
+    pub use logging;
     pub use sys;
     pub use unstable;
     pub use str;