2012-07-04 22:53:12 +01:00
|
|
|
//! Logging
|
2012-01-13 13:20:11 -08:00
|
|
|
|
|
|
|
export console_on, console_off;
|
|
|
|
|
|
|
|
#[nolink]
|
2012-07-03 16:11:00 -07:00
|
|
|
extern mod rustrt {
|
2012-01-13 13:20:11 -08:00
|
|
|
fn rust_log_console_on();
|
|
|
|
fn rust_log_console_off();
|
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Turns on logging to stdout globally
|
2012-01-13 13:20:11 -08:00
|
|
|
fn console_on() {
|
|
|
|
rustrt::rust_log_console_on();
|
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/**
|
|
|
|
* Turns off logging to stdout globally
|
|
|
|
*
|
|
|
|
* Turns off the console unless the user has overridden the
|
|
|
|
* runtime environment's logging spec, e.g. by setting
|
|
|
|
* the RUST_LOG environment variable
|
|
|
|
*/
|
2012-01-13 13:20:11 -08:00
|
|
|
fn console_off() {
|
|
|
|
rustrt::rust_log_console_off();
|
|
|
|
}
|