Module Logging.Phase
val normal :
?title:string ->
?severity:Logging.Logging_constants.Severity.t ->
unit ->
Logging.Report_id.t optionStarts a phase with logging level set to Normal
val verbose :
?title:string ->
?severity:Logging.Logging_constants.Severity.t ->
unit ->
Logging.Report_id.t optionStarts a phase with logging level set to Verbose
val tmi :
?title:string ->
?severity:Logging.Logging_constants.Severity.t ->
unit ->
Logging.Report_id.t optionStarts a phase with logging level set to TMI
val stop : Logging.Report_id.t option -> unitEnds the phase corresponding to the specified report id
val with_normal :
?title:string ->
?severity:Logging.Logging_constants.Severity.t ->
(unit -> 'a) ->
'aRuns the specified function within a phase with logging level set to Normal
val with_verbose :
?title:string ->
?severity:Logging.Logging_constants.Severity.t ->
(unit -> 'a) ->
'aRuns the specified function within a phase with logging level set to Verbose
val with_tmi :
?title:string ->
?severity:Logging.Logging_constants.Severity.t ->
(unit -> 'a) ->
'aRuns the specified function within a phase with logging level set to TMI