Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change log level to "info" for KitodoRestClient class on automatic test execution #5972

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Kitodo/src/test/resources/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
<Logger name="org.kitodo" level="debug" additivity="false">
<AppenderRef ref="STDOUT"/>
</Logger>
<!-- KitodoRestClient log level set to info to reduce log output on automatic execution -->
<!-- in case of errors with elastic search set it to debug or trace -->
<Logger name="org.kitodo.data.elasticsearch.KitodoRestClient" level="info" additivity="false">
<AppenderRef ref="STDOUT"/>
</Logger>
<Root level="error">
<AppenderRef ref="STDOUT"/>
</Root>
Expand Down
5 changes: 5 additions & 0 deletions Kitodo/src/test/resources/selenium/resources/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
<Logger name="org.kitodo" level="debug" additivity="false">
<AppenderRef ref="STDOUT"/>
</Logger>
<!-- KitodoRestClient log level set to info to reduce log output on automatic execution -->
<!-- in case of errors with elastic search set it to debug or trace -->
<Logger name="org.kitodo.data.elasticsearch.KitodoRestClient" level="info" additivity="false">
<AppenderRef ref="STDOUT"/>
</Logger>
<Root level="error">
<AppenderRef ref="STDOUT"/>
</Root>
Expand Down