Cmdliner terms for ergonomic logging configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Upgrade to ocamlformat 0.29.0; fix csvt/sexpt streaming; reformat

- Update .ocamlformat to 0.29.0 across all 591 files
- csvt: reuse single Buffer.t for field reads (no alloc per field)
- sexpt: Obj members decoded from stream into Dict, typed Variant GADT
- Reformat all source files for 0.29.0

+5 -9
+1 -1
.ocamlformat
··· 1 - version = 0.28.1 1 + version = 0.29.0
+4 -8
lib/vlog.mli
··· 151 151 152 152 In [test.ml]: 153 153 {[ 154 - let () = Vlog.setup_test ~level:Logs.Debug () 155 - let () = Alcotest.run "mylib" Test_foo.suite 154 + let () = Vlog.setup_test ~level:Logs.Debug () 155 + let () = Alcotest.run "mylib" Test_foo.suite 156 156 ]} 157 157 158 158 Run with reduced noise: 159 - {v 160 - TEST_LOG=warning dune test 161 - v} 159 + {v TEST_LOG=warning dune test v} 162 160 163 161 Debug a specific source: 164 - {v 165 - TEST_LOG=warning,conpool:debug dune test 166 - v} 162 + {v TEST_LOG=warning,conpool:debug dune test v} 167 163 168 164 {2 Comparison with Other Ecosystems} 169 165