1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-17 09:04:50 +02:00

Created Logging (markdown)

Paul Schaub 2021-10-29 20:20:34 +02:00
parent 617b4833d8
commit 0386861e56

7
Logging.md Normal file

@ -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.