diff --git a/src/libstd/logging.rs b/src/libstd/logging.rs index c53e7e82841..c662e5997af 100644 --- a/src/libstd/logging.rs +++ b/src/libstd/logging.rs @@ -89,7 +89,7 @@ fn newsched_log_str(msg: ~str) { use container::Container; // Truncate the string - let buf_bytes = 2048; + let buf_bytes = 256; let msg = if msg.len() > buf_bytes { msg.slice(0, buf_bytes) + "[...]" } else {