The Logger interface allows messages to be logged at three levels (debug, info, error), but the level can only be conveyed to Formatter.Format via the LogEntry struct.
Currently the LogEntry struct communicates this information between Logger and Formatter via a boolean field Verbose, which obviously only allows 2 levels to be differentiated.
Is there an intention to extend this API to allow all three levels to be communicated between Logger and Formatter?
The
Loggerinterface allows messages to be logged at three levels (debug, info, error), but the level can only be conveyed toFormatter.Formatvia theLogEntrystruct.Currently the LogEntry struct communicates this information between Logger and Formatter via a boolean field
Verbose, which obviously only allows 2 levels to be differentiated.Is there an intention to extend this API to allow all three levels to be communicated between
LoggerandFormatter?