package dose3

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file stdDebug.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
(**************************************************************************)
(*  This file is part of a library developed with the support of the      *)
(*  Mancoosi Project. http://www.mancoosi.org                             *)
(*                                                                        *)
(*  Main author(s):  Pietro Abate                                         *)
(*                                                                        *)
(*  This library is free software: you can redistribute it and/or modify  *)
(*  it under the terms of the GNU Lesser General Public License as        *)
(*  published by the Free Software Foundation, either version 3 of the    *)
(*  License, or (at your option) any later version.  A special linking    *)
(*  exception to the GNU Lesser General Public License applies to this    *)
(*  library, see the COPYING file for more information.                   *)
(**************************************************************************)

open ExtLib
open Dose_common

include Util.Logging (struct
  let label = "doseparse.stdDebug"
end)

let enable_debug = function
  | 0 -> () (* only warning messages : default *)
  | 1 -> Util.Info.all_enabled ()
  | 2 ->
      Util.Info.all_enabled () ;
      Util.Notice.all_enabled ()
  | _ ->
      Util.Info.all_enabled () ;
      Util.Notice.all_enabled () ;
      Util.Debug.all_enabled ()

let all_quiet t =
  if t then (
    Util.Info.all_disabled () ;
    Util.Notice.all_disabled () ;
    Util.Warning.all_disabled () ;
    Util.Debug.all_disabled () ;
    List.iter Util.Progress.disable (Util.Progress.available ()))

let enable_bars verbose l = if verbose then List.iter Util.Progress.enable l

let enable_timers verbose l =
  at_exit (Util.Timer.dump Format.err_formatter) ;
  if verbose then List.iter Util.Timer.enable l
OCaml

Innovation. Community. Security.