summary refs log tree commit diff
path: root/src/libcore/logging.rs
AgeCommit message (Collapse)AuthorLines
2012-09-28De-export logging, to_str, to_bytes, from_str, util. Part of #3583.Graydon Hoare-1/+0
2012-09-26libcore: De-export logging and pipesPatrick Walton-4/+2
2012-09-25rustc: Fix calls to the logging function when the must_cast flag is true; ↵Patrick Walton-2/+18
stop using shape code for logging
2012-09-25Revert "rustc: Stop using shape code for logging" due to ICEsPatrick Walton-18/+2
This reverts commit ac822a52be47579ffa59d5ca3e125680a79545d0.
2012-09-25rustc: Stop using shape code for loggingPatrick Walton-2/+18
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-20core: Mark three more trivial mods as demodedBrian Anderson-0/+4
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-9/+9
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-03-09core: Convert to rustdocBrian Anderson-8/+7
2012-01-13libcore: Add core::logging::console_on/off functionsBrian Anderson-0/+26
These affect logging output to stdout globally, and turning the console off has no effect when overridden by RUST_LOG.