jbonofre commented on issue #2291:
URL: https://github.com/apache/karaf/issues/2291#issuecomment-3950535276
You don't have a `etc/logback.xml` ?
You can try this `etc/logback.xml`:
```
<configuration debug="true">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are by default assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level
%logger{36} - %msg%n
</pattern>
</encoder>
</appender>
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
<logger name="osgi.log" level="WARN" />
<logger name="org.apache.camel" level="WARN" />
<logger name="org.ops4j" level="WARN" />
<logger name="org.eclipse.jetty" level="WARN" />
<logger name="org.apache.karaf" level="INFO" />
</configuration>
```
Maybe we should provide a simple `etc/logback.xml` by default in the Karaf
distribution ...
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]