Skip to content

Commit

Permalink
MODSOURCE-821 Add the ability to control the logging level via system…
Browse files Browse the repository at this point in the history
… props.
  • Loading branch information
dmytrokrutii committed Dec 10, 2024
1 parent d7eab3d commit 8b0e618
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ logger.kafka.level = ERROR
logger.kafka.additivity = false
logger.kafka.appenderRef.stdout.ref = STDOUT

rootLogger.level = info
rootLogger.level = ${sys:LOG_LEVEL:-INFO}
rootLogger.appenderRefs = info
rootLogger.appenderRef.stdout.ref = STDOUT

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ logger.kafka.name = org.apache.kafka
logger.kafka.level = ERROR
logger.kafka.appenderRef.stdout.ref = STDOUT

rootLogger.level = info
rootLogger.level = ${sys:LOG_LEVEL:-INFO}
rootLogger.appenderRefs = info
rootLogger.appenderRef.stdout.ref = STDOUT

Expand Down

0 comments on commit 8b0e618

Please sign in to comment.