This repo contains a series of working but (as yet) unreleased thought experiments spawned by the release of Kermit 2.0. As I have run into places where an extension to Kermit's capabilities (for instance, integration with syslogd
or, ANSI color formatting for messages) I've added subprojects.
Areas of exploration so far
kermit-ext
kermit-color
kermit-long-names
kermit-config
slf4j-over-kermit
and kermit-over-slf4j
timber-over-kermit
kermit-spring
Upcoming
Most of the modules have standalone examples
which should be opened as a separate project in your IDE.
Before any given example project will build you need to run the publishToMavenLocal
task in the main Kermit Extensions project as the standalone philosophy extends to pulling in the appropriate Kermit extension as a gradle dependency rather than referencing it directly.
kermit-ext
Syslogd level mappings from Kermit severities
Severity.syslogdLevel()
Bunyan logger level mappings from Kermit severities
Severity.bunyanLevel()
kermit-color
.platformLogWriter(withColor())
.platformLogWriter(withBrightColor())
The withColor()
and withBrightColor()
extension functions can take a message formatter, and return a wrapped version that adds color.
.platformLogWriter(withColor( MyAwesomeFormatter() ))
kermit-config
- builder style config to get your root logger val rootLogger = Kermit {
minSeverity(Severity.Warn)
+ platformLogWriter()
}
// ...
val loggerWithTag = rootLogger.withTag("bare.bones.App")
or, if you're a fan of the Java style builders
val rootLogger = Kermit.builder()
.minSeverity(Severity.Warn)
.addLogWriter(platformLogWriter())
.build()
kermit-long-names
- for people who prefer to write Logger.info(...)
rather than
Logger.i(...)
kermit-filesystem
- writes kermit logs to file (where Okio Filesystem is supported) with optional log file rolling based on max file size.
val rootLogger = Kermit {
minSeverity(Severity.Verbose)
+ platformLogWriter()
+ FilesystemLogWriter {
logPath("./logs/log.txt")
rollLogAtSize(1200) // Bytes (Optional) - skip if you dont want logs to roll
}
}
slf4j-over-kermit
- SLF4J logger provider (API) over Kermit Corekermit-over-slf4j
- Kermit log writer that pushes to SLF4Jtimber-over-kermit
- Timber Tree
that sends all logs to Kermit Corekermit-Spring
Firstly, add the dependency
dependencies {
// ...
implementation("com.gatebuzz.kermit.ext:kermit-spring:1.0.0")
}
Then, pass a parameter as part of the JVM options to tell Spring to use a new logging system
-Dorg.springframework.boot.logging.LoggingSystem=com.gatebuzz.kermit.ext.KermitLoggingSystem
Kermit will look for a properties file at startup, but boot up with sane defaults (compact classpath
representation and no color) - if you want to configure Kermit, drop "kermit.properties" into your
resources (/src/main/resources/
) folder, under com/gatebuzz/kermit/ext
-
# off / on / bright
color=bright
min.severity=verbose
tag.default=Kermit
# full ("com.example.ClassName"), or leave blank / any other value for compact ("c.e.ClassName")
tag.classpath.format=compact
In your Controller
code, you can use the kermitLogger()
property delegate to get a logger. This will automatically configure itself with a tag of the current class, although you can pass your
own tag if you need to.
@RestController
class LoggingController {
private val logger by kermitLogger()
@RequestMapping("/")
fun index(): String {
logger.v("A VERBOSE / TRACE Message")
logger.d("A DEBUG Message")
logger.i("An INFO Message")
logger.w("A WARN Message")
logger.e("An ERROR Message")
return "Howdy! Check out the Logs to see the output. Edit the \"kermit.properties\" to change log levels and formatting."
}
}
or,
@RestController
class LoggingController {
private val logger by kermitLogger( "my-tag" )
@RequestMapping("/")
fun index(): String {
logger.v("A VERBOSE / TRACE Message")
logger.d("A DEBUG Message")
logger.i("An INFO Message")
logger.w("A WARN Message")
logger.e("An ERROR Message")
return "Howdy! Check out the Logs to see the output. Edit the \"kermit.properties\" to change log levels and formatting."
}
}
Kermit was designed to work on mobile platforms, so it controls the logging level globally rather than Spring's way, where loggers are controlled on a per-logger level (inheriting the default from the parent logger)
This means, if you have loggers configured in your application.properties
## Logging Config
logging.level.root=TRACE
management.endpoints.web.exposure.include=loggers
management.endpoint.loggers.enabled=true
## Custom (per controller) logging level
logging.level.com.gatebuzz.kermit.ext.spring.LoggingController=INFO
logging.level.com.gatebuzz.kermit.ext.spring.FooLoggingController=DEBUG
All loggers, across the system will be configured to the last value declared in the configuration.
This seems to be by design to reduce memory footprint for mobile platforms. Changing to a Spring compatible, per-logger logging level would mean a change in the core of Kermit and is beyond the scope of this experiment.