From 0386861e56e14cce654f4e747afce41c01fe7e79 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Fri, 29 Oct 2021 20:20:34 +0200 Subject: [PATCH] Created Logging (markdown) --- Logging.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Logging.md diff --git a/Logging.md b/Logging.md new file mode 100644 index 0000000..212c420 --- /dev/null +++ b/Logging.md @@ -0,0 +1,7 @@ +PGPainless uses [slf4j](http://www.slf4j.org/) as an abstraction layer for various logging frameworks. +That means that PGPainless will integrate into your application seamlessly and make use of your logging framework of choice. + +Furthermore PGPainless makes use of [logback](http://logback.qos.ch/) as its preferred logging framework. +Logback is used in JUnit tests and is an optional runtime dependency. +Should you not want to use logback, you can simply choose not to explicitly depend on it. +In that case slf4j will fall back to a no-operation logger implementation, given that no other slf4j-compatible logging framework is set up on your end. \ No newline at end of file