We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e64302 commit a157bb1Copy full SHA for a157bb1
1 file changed
log.ml
@@ -104,7 +104,10 @@ module State = struct
104
("facil", facil.Logger.name) ::
105
pairs
106
in
107
- Logfmt.to_string pairs
+ let buf = Buffer.create 32 in
108
+ Logfmt.add_to_buffer buf pairs;
109
+ Buffer.add_char buf '\n';
110
+ Buffer.contents buf
111
112
let cur_format = Atomic.make format_simple_full
113
let set_cur_format f = Atomic.set cur_format f
0 commit comments