We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d597f54 commit dc9b3e3Copy full SHA for dc9b3e3
src/libstd/rt/logging.rs
@@ -38,7 +38,7 @@ impl Logger for StdErrLogger {
38
};
39
40
// Truncate the string
41
- let buf_bytes = 256;
+ let buf_bytes = 2048;
42
if s.len() > buf_bytes {
43
let s = s.slice(0, buf_bytes) + "[...]";
44
print(s);
0 commit comments