about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-11-29 01:31:47 -0800
committerbors <bors@rust-lang.org>2013-11-29 01:31:47 -0800
commit6c672ee094a1a8e72c100100f43c73a9741f08a7 (patch)
treed821ad63042a75fa32d64ad8a3361640b4096002 /src/libstd
parentbf6964ecb67f4ffce6be75130ab7a3be793960ff (diff)
parentbfba120133e10df7c1333b98a166d24490270032 (diff)
downloadrust-6c672ee094a1a8e72c100100f43c73a9741f08a7.tar.gz
rust-6c672ee094a1a8e72c100100f43c73a9741f08a7.zip
auto merge of #10715 : alexcrichton/rust/fix-log-twice, r=huonw
It may mislead you into thinking tasks are spawning twice, when in fact they are
not.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/logging.rs12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/libstd/logging.rs b/src/libstd/logging.rs
index 4af6d1d53be..1b540823f17 100644
--- a/src/libstd/logging.rs
+++ b/src/libstd/logging.rs
@@ -107,9 +107,10 @@ pub fn log(_level: u32, args: &fmt::Arguments) {
         let optional_task: Option<*mut Task> = Local::try_unsafe_borrow();
         match optional_task {
             Some(local) => {
+                // Lazily initialize the local task's logger
                 match (*local).logger {
                     // Use the available logger if we have one
-                    Some(ref mut logger) => return logger.log(args),
+                    Some(ref mut logger) => { logger.log(args); }
                     None => {
                         let mut logger = StdErrLogger::new();
                         logger.log(args);
@@ -117,10 +118,11 @@ pub fn log(_level: u32, args: &fmt::Arguments) {
                     }
                 }
             }
-            None => {}
+            // If there's no local task, then always log to stderr
+            None => {
+                let mut logger = StdErrLogger::new();
+                logger.log(args);
+            }
         }
-        // There is no logger anywhere, just write to stderr
-        let mut logger = StdErrLogger::new();
-        logger.log(args);
     }
 }