module type S = sig
.. end
include Log.Messages
val add_group : ?memo:bool -> string -> Plugin.group
Create a new group inside the plug-in.
The given string must be different of all the other group names of this
plug-in if memo
is false
.
If memo
is true
the function will either create a fresh group or
return an existing group of the same name in the same plugin.
memo
defaults to false
Since Beryllium-20090901
module Help: Plugin.Bool
module Verbose: Plugin.Int
module Debug: Plugin.Int
module Debug_category: Plugin.String_set
prints debug messages having the corresponding key.
module Share: sig
.. end
Handle the specific `share' directory of the plug-in.
val help : Plugin.group
The group containing option -*-help.
Since Boron-20100401
val messages : Plugin.group
The group containing options -*-debug and -*-verbose.
Since Boron-20100401
val parameters : unit -> Plugin.Parameter.t list
List of parameters created by this plug-in.
Since Nitrogen-20111001