forked from kit-data-manager/metastore2
-
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.
Merge pull request kit-data-manager#90 from kit-data-manager/v_1.0.0
V 1.0.0
- Loading branch information
Showing
83 changed files
with
25,448 additions
and
2,419 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
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 @@ | ||
# Sonatype Lift Configuration | ||
|
||
# gitignore formatted string of files to ignore. | ||
ignoreFiles = """ | ||
.github/** | ||
src/main/resources/static/editor/dependencies/** | ||
""" |
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
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
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
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,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | ||
|
||
<property name="LOGS" value="./log/" /> | ||
|
||
<appender name="Console" | ||
class="ch.qos.logback.core.ConsoleAppender"> | ||
<layout class="ch.qos.logback.classic.PatternLayout"> | ||
<pattern>%gray(%d{YYYY-MM-dd HH:mm:ss.SSS}) %green(%highlight(%5p)) - %gray([%10thread]) %cyan(%42logger{42}) : %msg%n</pattern> | ||
</layout> | ||
</appender> | ||
|
||
<appender name="RollingFile" | ||
class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>${LOGS}/accessLog.log</file> | ||
<encoder | ||
class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> | ||
<Pattern>%d{YYYY-MM-dd}, %m%n</Pattern> | ||
</encoder> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<!-- daily rollover --> | ||
<fileNamePattern>${LOGS}/accessLog.%d{yyyy-MM-dd}.log</fileNamePattern> | ||
<!-- keep 1 days' worth of history --> | ||
<maxHistory>2</maxHistory> | ||
</rollingPolicy> | ||
</appender> | ||
|
||
<!-- LOG everything at INFO level --> | ||
<root level="info"> | ||
<appender-ref ref="Console" /> | ||
</root> | ||
|
||
<!-- LOG "edu.kit.datamanager.metastore2.filter.*" at TRACE level --> | ||
<logger name="edu.kit.datamanager.metastore2.filter" level="trace" additivity="false"> | ||
<appender-ref ref="RollingFile" /> | ||
</logger> | ||
|
||
</configuration> |
Oops, something went wrong.