Skip to content

Commit d67f4bc

Browse files
committed
[yugabyte#9301] Default to logging DEBUG logs on stdout
Summary: application.log files for Platform have full DEBUG logs but we do not log these to stdout for a better developer experience. However, stdout logs are consumed by kubernetes and docker containers, so we should default to DEBUG logs on stdout and let developers customize the level for themselves. Test Plan: sbt run, verify that DEBUG logs can be seen on stdout Reviewers: wesley, jvigil Reviewed By: jvigil Subscribers: jenkins-bot, yugaware Differential Revision: https://phabricator.dev.yugabyte.com/D12274
1 parent 70758b2 commit d67f4bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

managed/src/main/resources/logback.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5coloredLevel %F:%L [%thread] %msg%n</pattern>
2424
</encoder>
2525
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
26-
<level>${APPLICATION_CONSOLE_LOG_LEVEL:-INFO}</level>
26+
<level>${APPLICATION_CONSOLE_LOG_LEVEL:-DEBUG}</level>
2727
</filter>
2828
</appender>
2929

0 commit comments

Comments
 (0)