-
Notifications
You must be signed in to change notification settings - Fork 2
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
native-image #5
Comments
|
liquibase stuff does not work yet. |
Current
Maybe update each dependency on their own to find out what was causing it. |
IIRC, the problem is somewhere in diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml
index c0f15a5..5114e27 100644
--- a/src/main/resources/logback.xml
+++ b/src/main/resources/logback.xml
@@ -39,8 +39,8 @@
</appender>
<!-- Logs in JSON, which can be useful in combination with e.g. Elasticstack -->
- <!-- <appender name="json-stdout" class="ch.qos.logback.core.ConsoleAppender">
- <encoder class="net.logstash.logback.encoder.LogstashEncoder"> -->
+ <appender name="json-stdout" class="ch.qos.logback.core.ConsoleAppender">
+ <encoder class="net.logstash.logback.encoder.LogstashEncoder">
<!-- Slows down logging but includes where the logging was called from -->
<!-- <includeCallerData>true</includeCallerData> -->
@@ -48,12 +48,12 @@
<!-- <customFields>{"appname":"myWebservice","roles":["customerorder","auth"],"buildinfo":{"version":"Version 0.1.0-SNAPSHOT","lastcommit":"75473700d5befa953c45f630c6d9105413c16fe1"}}</customFields> -->
<!-- Pretty print JSON as it should not hurt performance but easens debugging -->
- <!-- <jsonGeneratorDecorator class="net.logstash.logback.decorate.PrettyPrintingJsonGeneratorDecorator"/> -->
+ <jsonGeneratorDecorator class="net.logstash.logback.decorate.PrettyPrintingJsonGeneratorDecorator"/>
<!-- Timestamp is already in ISO-8601, so no customization should be needed. -->
<!-- <timestampPattern>yyyy-MM-dd'T'HH:mm:ss.SSS</timestampPattern> -->
- <!-- </encoder>
- </appender> -->
+ </encoder>
+ </appender>
<root level="info">
<!-- Use the appender defined by the environment variable LOG_APPENDER or use a default --> |
Maybe use --no-parallel as it might reduce memory usage? |
Branch
feature-graalvm
tries to make this template work withnative-image
. But unclear if it's worth the effort (especially as further dependencies could easily break the whole thing)The text was updated successfully, but these errors were encountered: