Values.LoggerSourceInformation about a logger
type nonrec t = {component : LoggerComponent.t;The component that will be subject to logging.
*)id : string;A descriptive or arbitrary ID for the logger. This value must be unique within the logger definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
*)level : LoggerLevel.t;The level of the logs.
*)space : int option;The amount of file space, in KB, to use if the local file system is used for logging purposes.
*)type_ : LoggerType.t;The type of log output which will be used.
*)}val make :
?space:??? ->
component:LoggerComponent.t ->
id:string ->
level:LoggerLevel.t ->
type_:LoggerType.t ->
unit ->
t