]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/capturing-logging.rs
Merge branch 'master' into cfg_tmp_dir
[rust.git] / src / test / run-pass / capturing-logging.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-android (FIXME #11419)
12 // exec-env:RUST_LOG=info
13
14 #![feature(phase)]
15
16 #[phase(plugin, link)]
17 extern crate log;
18
19 use log::{set_logger, Logger, LogRecord};
20 use std::fmt;
21 use std::io::{ChanReader, ChanWriter};
22
23 struct MyWriter(ChanWriter);
24
25 impl Logger for MyWriter {
26     fn log(&mut self, record: &LogRecord) {
27         let MyWriter(ref mut inner) = *self;
28         write!(inner, "{}", record.args);
29     }
30 }
31
32 fn main() {
33     let (tx, rx) = channel();
34     let (mut r, w) = (ChanReader::new(rx), ChanWriter::new(tx));
35     spawn(move|| {
36         set_logger(box MyWriter(w) as Box<Logger+Send>);
37         debug!("debug");
38         info!("info");
39     });
40     let s = r.read_to_string().unwrap();
41     assert!(s.as_slice().contains("info"));
42     assert!(!s.as_slice().contains("debug"));
43 }