Skip to content
Snippets Groups Projects
Commit 2b64b3a6 authored by David Bühler's avatar David Bühler
Browse files

[kernel] Log: greatly lowers the limit at which messages are truncated.

(Messages emitted via Log.printf are never truncated.)
parent 96bdd6de
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
(**************************************************************************) (**************************************************************************)
(* Messages longer than N characters are truncated when printed on terminal. *) (* Messages longer than N characters are truncated when printed on terminal. *)
let max_message_length = 2097152 let max_message_length = 10000
type kind = Result | Feedback | Debug | Warning | Error | Failure type kind = Result | Feedback | Debug | Warning | Error | Failure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment