Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
debug.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
(*{{{ Copyright (c) 2012-2014 Anil Madhavapeddy <anil@recoil.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * }}}*) let _debug_active = ref false let debug_active () = !_debug_active let default_reporter () = (* Note: we want the logging operation to not block the other operation. * Hence, the reporter creates Lwt promises. *) let fmtr, fmtr_flush = let b = Buffer.create 512 in ( Fmt.with_buffer ~like:Fmt.stdout b , fun () -> let m = Buffer.contents b in Buffer.reset b; m ) in let report _src _level ~over k msgf = let k _ = let write () = Lwt_io.write Lwt_io.stderr (fmtr_flush ()) in let unblock () = over (); Lwt.return () in Lwt.ignore_result (Lwt.finalize write unblock : unit Lwt.t); k () in msgf @@ fun ?header:_ ?tags:_ fmt -> Format.kfprintf k fmtr ("@[" ^^ fmt ^^ "@]@.") in { Logs.report = report } let set_log = lazy ( (* If no reporter has been set by the application, set default one that prints to stderr *) if (Logs.reporter ()) == Logs.nop_reporter then Logs.set_level @@ Some Logs.Debug; Logs.set_reporter (default_reporter ()); ) let activate_debug () = Lazy.force set_log; _debug_active := true; Logs.debug (fun f -> f "Cohttp debugging output is active") let () = try ( match Sys.getenv "COHTTP_DEBUG" with | "false" | "0" -> () | _ -> activate_debug () ) with Not_found -> ()