-
Notifications
You must be signed in to change notification settings - Fork 36
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
Exclude logback configuration #103
Comments
I have the same problem. @nmiljkovic how did you solve this problem? |
@gyorgy-marbella When loading configuration, any classpath resources which are in your project will have priority. I have simply added <configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<!-- configure anything special here -->
</configuration> |
thanks for the quick reply @nmiljkovic . We are using the spring logback extension (logback-spring.xml) and it is ignored if I add logback.xml logback-spring.xml
|
@gyorgy-marbella yes, unfortunately I have not been able to find a workaround regarding this and make |
I found a workaround, added the following to the application.yaml
|
Hello CurrencyCloud team :),
You should consider removing
logback.xml
from the package and instead letting users configure their own logging.I encountered an issue when setting up a Spring Boot app which didn't appear to log anything, traced it to currencycloud-java. :)
The text was updated successfully, but these errors were encountered: