From 222f655c687c47399da185d970cfc16527fd877c Mon Sep 17 00:00:00 2001 From: Gerhard Muth Date: Wed, 13 Sep 2023 23:23:03 +0300 Subject: [PATCH] hint to logging-kotlin --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 76067811..2ce15e43 100644 --- a/README.md +++ b/README.md @@ -159,9 +159,12 @@ printer.printJob( ## Logging -From version 3.0 onwards the library uses [java.util.logging](https://docs.oracle.com/javase/8/docs/technotes/guides/logging/overview.html) - configure as you like. +From version 3.0 onwards the library uses [Java Logging](https://docs.oracle.com/javase/8/docs/technotes/guides/logging/overview.html) - configure as you like. Tests can use Logging.configure() to load logging.properties from test/resources. +The behaviour of the my previously used [ConsoleLogger](https://github.com/gmuth/logging-kotlin/blob/main/src/main/kotlin/de/gmuth/log/ConsoleLogger.kt) is now implemented by StdoutHandler and SimpleClassNameFormatter. +I moved all of my custom logging code to it's own repository [logging-kotlin](https://github.com/gmuth/logging-kotlin/tree/main/src/main/kotlin/de/gmuth/log). + ## Build To build the jar make sure you have JDK 11 installed.