-
Notifications
You must be signed in to change notification settings - Fork 11
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 #52 from sharmalab/dev
Fix the logs to be in h2 database
- Loading branch information
Showing
11 changed files
with
59 additions
and
3 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 |
---|---|---|
|
@@ -11,3 +11,4 @@ lib/ | |
.settings | ||
dependencies/bundles/ | ||
distribution/build-configuration/version.info | ||
bin/ |
Binary file not shown.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#Thu, 29 Nov 2018 15:55:41 -0500 | ||
#Thu, 13 Dec 2018 19:27:40 -0500 | ||
bindaas.framework.version.major=3 | ||
bindaas.framework.version.minor=3 | ||
bindaas.framework.version.revision=0 | ||
bindaas.framework.version.revision=1 | ||
bindaas.build.date=201811291555 |
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,29 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> | ||
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> | ||
<appender name="console" class="org.apache.log4j.ConsoleAppender"> | ||
<param name="Target" value="System.out" /> | ||
<layout class="org.apache.log4j.PatternLayout"> | ||
<param name="ConversionPattern" value="%d{DATE} %-5p %c{2} - %m%n" /> | ||
</layout> | ||
</appender> | ||
|
||
<appender name="R" class="org.apache.log4j.RollingFileAppender"> | ||
<param name="file" value="../log/bindaas.log" /> | ||
<param name="MaxFileSize" value="500KB" /> | ||
<!-- Keep one backup file --> | ||
<param name="MaxBackupIndex" value="5" /> | ||
<layout class="org.apache.log4j.PatternLayout"> | ||
<param name="ConversionPattern" value="%d{DATE} %-5p %c{2} - %m%n" /> | ||
</layout> | ||
</appender> | ||
<category name="edu" additivity="true"> | ||
<priority value="debug" /> | ||
|
||
</category> | ||
<root> | ||
<priority value="warn" /> | ||
<appender-ref ref="console" /> | ||
<appender-ref ref="R" /> | ||
</root> | ||
</log4j:configuration> |
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,10 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>bindaas</groupId> | ||
<artifactId>core</artifactId> | ||
<version>0.0.1</version> | ||
</parent> | ||
<artifactId>log4j.config</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</project> |
7 changes: 7 additions & 0 deletions
7
projects/core/log4j.config/src/main/resources/META-INF/MANIFEST.MF
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 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Log4j Config File | ||
Bundle-SymbolicName: log4j.config | ||
Bundle-Version: 1.0.0 | ||
Fragment-Host: org.springframework.osgi.log4j.osgi;bundle-version="1.2.15" | ||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7 |
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