Rangechange the log message truncation limit.
This commit is contained in:
parent
d597f54fc2
commit
dc9b3e37e2
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue