lanner.otp.2.2.0.source-code.logback.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
<configuration> <!-- This suppresses the meta-log entries about Logback configuration (how Java). This is a stopgap measure. The right solution is to make sure there are not logback.xml files from our dependency libraries on the classpath. --> <statusListener class="ch.qos.logback.core.status.NopStatusListener" /> <!-- This will push these level changes onto JUL. Otherwise, JUL defaults to a high threshold for logging and debug log messages will never make it to slf4j. --> <contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator"/> <appender name="stdout" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <!-- print out file and line number in parenthesis, which Eclipse and IDEA will link --> <pattern>%d{HH:mm:ss.SSS} %level \(%F:%L\) %msg%n</pattern> </encoder> </appender> <!-- Change this to debug to let more messages through. --> <root level="info"> <appender-ref ref="stdout" /> </root> <!-- OTP LOGGERS --> <!-- Graph builder data import logs a summary at INFO level and issues at DEBUG level --> <logger name="DATA_IMPORT_ISSUES" level="info" /> <logger name="org.opentripplanner" level="info"/> <logger name="org.opentripplanner.graph_builder.module.DirectTransferGenerator" level="info"/> <logger name="org.opentripplanner.routing" level="info"/> <logger name="org.opentripplanner.routing.algorithm.transferoptimization" level="info"/> <logger name="org.opentripplanner.routing.algorithm.GenericAStar" level="info"/> <!-- Avoid printing debug messages when walk limits are exceeded --> <logger name="org.opentripplanner.routing.edgetype.PlainStreetEdge" level="info"/> <logger name="org.opentripplanner.routing.impl.RetryingPathServiceImpl" level="info"/> <!-- Avoid printing debug messages about free-flowing vertices --> <logger name="org.opentripplanner.routing.vertextype.IntersectionVertex" level="info"/> <!-- Raptor request debug logging - Turn on/off: debug/info --> <logger name="org.opentripplanner.transit.raptor.RaptorService" level="info"/> <!-- THIRD PARTY LOGGERS --> <logger name="ch.qos.logback" level="warn"/> <logger name="com.amazonaws" level="info"/> <logger name="org.apache.http" level="info" /> <logger name="com.conveyal" level="info"/> <!-- Avoid printing info messages about calendars when building graph --> <logger name="org.onebusaway.gtfs.impl.calendar.CalendarServiceDataFactoryImpl" level="warn" /> <!-- Avoid printing ugly warning message when unable to create websocket connection --> <logger name="com.ning.http.client.providers.netty.NettyAsyncHttpProvider" level="error" /> <logger name="com.sun.jersey" level="warn" /> <!-- Suppress an inconsequential IOException that is logged at debug level. --> <logger name="org.glassfish.grizzly" level="info" /> <!-- Suppress info logs from azure packages --> <logger name="com.azure" level="warn" /> <!-- If you want to debug realtime updates set these loggers to debug --> <logger name="org.opentripplanner.updater.trip.TimetableSnapshotSource" level="info" /> <logger name="org.opentripplanner.model.Timetable" level="warn" /> <logger name="org.opentripplanner.ext.siri.SiriTimetableSnapshotSource" level="warn" /> <logger name="org.opentripplanner.ext.siri.TimetableHelper" level="warn" /> <!-- optional logging configuration to define your own custom logging needs --> <!-- add it to the root of OTP runtime folder --> <include optional="true" file="logback-include-extensions.xml" /> </configuration>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy