Skip to content

Commit

Permalink
Adding log level
Browse files Browse the repository at this point in the history
I think it's important to mention all the log levels. There are so many loggers that we might get confused (eg. TRACE vs FINEST, etc.)
  • Loading branch information
agoncal authored Apr 2, 2020
1 parent b1dcac8 commit 8383e44
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/src/main/asciidoc/logging.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,21 @@ The root logger category is handled separately, and is configured via the follow
|quarkus.log.level|INFO|The default minimum log level for every log category.
|===

=== Log levels

There are several log levels you can use:

[cols="<m,<5",options="header"]
|===
|Level|Description
|FATAL|For events that indicate a critical service failure
|ERROR|To indicate a disruption in a request or the ability to service a request
|WARN|May indicate a non-critical service error
|INFO|For crucial related information
|DEBUG|For messages that convey extra information
|TRACE|Log low-level priority messages
|===

[id="format-string"]
== Format String

Expand Down

0 comments on commit 8383e44

Please sign in to comment.