Skip to content

Commit dc9b3e3

Browse files
committed
Rangechange the log message truncation limit.
1 parent d597f54 commit dc9b3e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/rt/logging.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ impl Logger for StdErrLogger {
3838
};
3939

4040
// Truncate the string
41-
let buf_bytes = 256;
41+
let buf_bytes = 2048;
4242
if s.len() > buf_bytes {
4343
let s = s.slice(0, buf_bytes) + "[...]";
4444
print(s);

0 commit comments

Comments
 (0)