package krb

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

Source file krb_debug.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
open! Core
open Async
open Env_config
module Debug_log = Log.Make_global ()

let initialized_log : [ `Initialized ] Set_once.t = Set_once.create ()

let maybe_initialize_log () =
  match Set_once.get initialized_log with
  | Some `Initialized -> ()
  | None ->
    Set_once.set_exn initialized_log [%here] `Initialized;
    let output = List.map Config.debug_log_config ~f:Log_output.to_output in
    Debug_log.set_output output
;;

let log_s f =
  if Config.print_debug_messages
  then (
    maybe_initialize_log ();
    Debug_log.sexp (f ()))
;;
OCaml

Innovation. Community. Security.