From 34df72210533eeb78ce0106d2d2a132b16d585a6 Mon Sep 17 00:00:00 2001 From: Anurag Soni Date: Sat, 11 Jan 2020 12:14:41 -0500 Subject: [PATCH] Try using `httpaf` as backing http implementation (#94) * Link OCaml Webapp Tutorial from README (#131) Link "Lightweight OCaml Webapp Tutorial" from README Followup to #127 * remove unused dependencies (#132) * feat: support cohttp lwt_stream body (#135) * Update stream impl (#137) * forward headers and code * First try with httpaf * add logs + bigstringaf as deps * run ocamlformat * Fix opam files Co-authored-by: Shon Feder --- examples/hello_world.ml | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/hello_world.ml b/examples/hello_world.ml index 35e3ce33..98a42eea 100644 --- a/examples/hello_world.ml +++ b/examples/hello_world.ml @@ -35,6 +35,7 @@ let print_person = in `Json (person |> json_of_person) |> respond') + let _ = Logs.set_reporter (Logs_fmt.reporter ()) ; Logs.set_level (Some Logs.Debug) ;