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

Co-Authored-By: George Gastaldi <[email protected]>
Co-Authored-By: David M. Lloyd <[email protected]>
  • Loading branch information
3 people committed Apr 8, 2020
1 parent 4889bb9 commit b516881
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|A critical service failure/complete inability to service requests of any kind
|ERROR|A significant disruption in a request or the inability to service a request
|WARN|A non-critical service error or problem that may not require immediate correction
|INFO|Service lifecycle events or important related very-low-frequency information
|DEBUG|Messages that convey extra information regarding lifecycle or non-request-bound events which may be helpful for debugging
|TRACE|Messages that convey extra per-request debugging information that may be very high frequency
|===

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

Expand Down

0 comments on commit b516881

Please sign in to comment.