JuliaLogging
This is the landing page of the JuliaLogging GitHub organization. JuliaLogging is an umbrella organization for logging-related packages and repositories in the Julia programming language ecosystem.
Here's a summary of libraries which integrate with the standard logging frontend macros @debug, @info, @warn, @error from Base and with the abstractions from the Logging standard library.
Frontend
ProgressLogging.jlprovides some convenient frontend macros including@progresswhich makes it easy to emit log records tracking the progress of looping constructs.
Log Event routing and transformation
LoggingExtras.jlprovides generic log transformation, filtering and routing functionality. You can use this to mutate messages as they go through the chain, duplicate a stream of log records into multiple streams, discard messages based on a predicate, etc.Logging2.jlprovides utilities to redirect
Sinks
- The
Loggingstdlib provides a default logger backendConsoleLoggerfor basic filtering and pretty printing of log records in the terminal. TerminalLoggers.jlis a library for advanced terminal-based pretty printing of log records, including fancy progress bars and markdown formatting.TensorBoardLogger.jlcan log structured numeric data to TensorBoard as a backend.LogRoller.jlhas a backend for rotating log files once they hit a size limit.Syslogging.jlprovides a backend to direct logs to syslog.LoggingExtras.jlprovides a simpleFileLoggersink.- LokiLogger is a log message sink for Grafana Loki
Configuration
LogCompose.jlprovides declarative logger configuration and an associated.tomlfile format.