-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Seth Shaw <108362375+seth-shaw-asu@users.noreply.github.com>
- Loading branch information
1 parent
b92afd8
commit ba31a7d
Showing
3 changed files
with
24 additions
and
1 deletion.
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
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,7 @@ | ||
[template] | ||
src = "log4j2.xml.tmpl" | ||
dest = "/opt/tomcat/webapps/fits/WEB-INF/classes/log4j2.xml" | ||
uid = 100 | ||
gid = 1000 | ||
mode = "0640" | ||
keys = [ "/" ] |
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,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Configuration> | ||
<Appenders> | ||
<Console name="STDOUT" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d %-5p - (%C{1}:%L) - %m%n" /> | ||
</Console> | ||
</Appenders> | ||
<Loggers> | ||
<Logger name="edu.harvard.hul.ois.fits" level="info" /> | ||
<Logger name="edu.harvard.hul.ois.jhove" level="error" /> | ||
<Logger name="org.apache.tika" level="error" /> | ||
<Root level="{{ getenv "FITS_SERVICE_LOG_LEVEL" }}"> | ||
<AppenderRef ref="STDOUT" /> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |