-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed log level from debug to warn, and switched from log4j to logb…
…ack/slf4j.
- Loading branch information
1 parent
5cf8fc0
commit ad2a1e6
Showing
7 changed files
with
39 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
.gradle | ||
build | ||
.idea | ||
classes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | ||
|
||
<define name="pluginLogDir" class="com.alltheducks.logging.logback.BbPluginLogDirPropertyDefiner"> | ||
<vendorId>swin</vendorId> | ||
<handle>studentview</handle> | ||
</define> | ||
|
||
<appender name="default" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>${pluginLogDir}/swin-studentview.log</file> | ||
<append>true</append> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<fileNamePattern>${pluginLogDir}/swin-studentview.%d{yyyy-MM-dd}.log</fileNamePattern> | ||
</rollingPolicy> | ||
<encoder> | ||
<!-- This pattern ensures logging will work in Learn SaaS --> | ||
<pattern>%date{yyyy-MM-dd HH:mm:ss} | %-5level | %-45(%L:%logger{40}) | %m%n%ex{10}</pattern> | ||
</encoder> | ||
</appender> | ||
<logger name="au.edu.swinburne" level="WARN"/> | ||
<logger name="net.sourceforge.stripes" level="WARN"/> | ||
<root level="WARN"> | ||
<appender-ref ref="default"/> | ||
</root> | ||
</configuration> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters