Provides plugins to allow logger provided by LoggingExtras to be used with LogCompose.
The following logger types can be composed with this package:
- LoggingExtras.TeeLogger
- LoggingExtras.FileLogger
Example configurations:
[loggers.file1]
type = "LoggingExtras.FileLogger"
filename = "testapp1.log"
append = true # file open mode (default: false)
flush = true # flush after logging (default: true)
[loggers.file2]
type = "LoggingExtras.FileLogger"
filename = "testapp2.log"
append = true
flush = true
[loggers.tee]
type = "LoggingExtras.TeeLogger"
destinations = ["file1", "file2"]
Check documentation of LoggingExtras for more details about parameter values.