Skip to content

Commit

Permalink
Rangechange the log message truncation limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan committed Aug 19, 2013
1 parent d597f54 commit dc9b3e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/rt/logging.rs
Expand Up @@ -38,7 +38,7 @@ impl Logger for StdErrLogger {
};

// Truncate the string
let buf_bytes = 256;
let buf_bytes = 2048;
if s.len() > buf_bytes {
let s = s.slice(0, buf_bytes) + "[...]";
print(s);
Expand Down

0 comments on commit dc9b3e3

Please sign in to comment.