]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/capturing-logging.rs
rollup merge of #20608: nikomatsakis/assoc-types-method-dispatch
[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::sync::mpsc::channel;
21 use std::fmt;
22 use std::io::{ChanReader, ChanWriter};
23 use std::thread::Thread;
24
25 struct MyWriter(ChanWriter);
26
27 impl Logger for MyWriter {
28     fn log(&mut self, record: &LogRecord) {
29         let MyWriter(ref mut inner) = *self;
30         write!(inner, "{}", record.args);
31     }
32 }
33
34 fn main() {
35     let (tx, rx) = channel();
36     let (mut r, w) = (ChanReader::new(rx), ChanWriter::new(tx));
37     let _t = Thread::spawn(move|| {
38         set_logger(box MyWriter(w) as Box<Logger+Send>);
39         debug!("debug");
40         info!("info");
41     });
42     let s = r.read_to_string().unwrap();
43     assert!(s.as_slice().contains("info"));
44     assert!(!s.as_slice().contains("debug"));
45 }