about summary refs log tree commit diff
path: root/src/libstd/cleanup.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-09 10:34:27 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-11 06:49:18 -0700
commit8b4423b04f519b78e0e9196ae1521531c80c743b (patch)
tree713d12f4142749e7699de5c61962ee359a30ca88 /src/libstd/cleanup.rs
parent8015f9c27ec342dbf0b28c9c0c4769d8b3bcfc9f (diff)
downloadrust-8b4423b04f519b78e0e9196ae1521531c80c743b.tar.gz
rust-8b4423b04f519b78e0e9196ae1521531c80c743b.zip
De-pub some private runtime components
This change was waiting for privacy to get sorted out, which should be true now
that #8215 has landed.

Closes #4427
Diffstat (limited to 'src/libstd/cleanup.rs')
-rw-r--r--src/libstd/cleanup.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstd/cleanup.rs b/src/libstd/cleanup.rs
index 1c9944664ee..38925621f12 100644
--- a/src/libstd/cleanup.rs
+++ b/src/libstd/cleanup.rs
@@ -123,10 +123,10 @@ pub unsafe fn annihilate() {
 
     if debug_mem() {
         // We do logging here w/o allocation.
-        rterrln!("annihilator stats:\n  \
-                     total boxes: {}\n  \
-                    unique boxes: {}\n  \
-                     bytes freed: {}",
-                 stats.n_total_boxes, stats.n_unique_boxes, stats.n_bytes_freed);
+        debug2!("annihilator stats:\n  \
+                       total boxes: {}\n  \
+                      unique boxes: {}\n  \
+                       bytes freed: {}",
+                stats.n_total_boxes, stats.n_unique_boxes, stats.n_bytes_freed);
     }
 }