-
Notifications
You must be signed in to change notification settings - Fork 25
/
logback-include-extensions.xml
23 lines (22 loc) · 1.18 KB
/
logback-include-extensions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<included>
<!-- Activate debug logging in OSM boarding location - transit stop matching module and write its log to a file.
The file is used for automatic monitorig of the success rate of the matching process. -->
<appender name="OSMBoardingLog" class="ch.qos.logback.core.FileAppender">
<file>/var/opentripplanner/taggedStops.log</file>
<append>false</append>
<!-- set immediateFlush to false for much higher logging throughput -->
<immediateFlush>false</immediateFlush>
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%msg%n</pattern>
</encoder>
</appender>
<logger name="org.opentripplanner.graph_builder.module.OsmBoardingLocationsModule" level="debug" additivity="false">
<appender-ref ref="OSMBoardingLog"/>
</logger>
<logger name="org.opentripplanner.updater" level="off" />
<logger name="org.opentripplanner.updater.trip.TimetableSnapshotSource" level="off" />
<logger name="org.opentripplanner.model.Timetable" level="off" />
<logger name="org.opentripplanner.routing.algorithm.transferoptimization.OptimizeTransferService" level="off" />
</included>