Skip to content

Commit

Permalink
Change py-embedded-server from WARN to INFO logging (deephaven#5644)
Browse files Browse the repository at this point in the history
The python embedded Deephaven server does not currently show the end-user any INFO logging. It was stated that the default was WARN so that the end-user doesn't get command line spam, but that is already covered in the setup - the slf4j / logback logging does _not_ hit the terminal regardless. This is only applicable for logging that hits the web UI via LogBufferAppender / ConsoleService.SubscribeToLogs.
  • Loading branch information
devinrsmith committed Jun 24, 2024
1 parent a13a0dc commit 31a9895
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!--<logger name="io.netty" level="INFO"/>-->
<!--<logger name="io.deephaven" level="INFO"/>-->

<root level="warn">
<root level="info">
<appender-ref ref="LOGBUFFER" />
</root>
</configuration>

0 comments on commit 31a9895

Please sign in to comment.