summaryrefslogtreecommitdiffstats
path: root/src/main/properties/log4j.properties
diff options
context:
space:
mode:
authorNils Schwabe2014-04-08 12:23:58 +0200
committerNils Schwabe2014-04-08 12:23:58 +0200
commitc5c204b42ef294ecaf5ff7b048d26e117ddb8c57 (patch)
treee3aa563b42e631994818ca624796a076cbe50725 /src/main/properties/log4j.properties
parentInitial Commit (diff)
downloadmasterserver-c5c204b42ef294ecaf5ff7b048d26e117ddb8c57.tar.gz
masterserver-c5c204b42ef294ecaf5ff7b048d26e117ddb8c57.tar.xz
masterserver-c5c204b42ef294ecaf5ff7b048d26e117ddb8c57.zip
LDAP functionallity
- added apache ldap client api to pom.xml - added the LDAP user which authenticates to the LDAP server - added testAuthentication to AppTest - users get inserted into db after authenticating - added log4j properties to filter unuseful debug messages
Diffstat (limited to 'src/main/properties/log4j.properties')
-rw-r--r--src/main/properties/log4j.properties11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/properties/log4j.properties b/src/main/properties/log4j.properties
new file mode 100644
index 0000000..4ef8d15
--- /dev/null
+++ b/src/main/properties/log4j.properties
@@ -0,0 +1,11 @@
+log4j.rootLogger=DEBUG, A1
+
+log4j.appender.A1=org.apache.log4j.ConsoleAppender
+
+log4j.appender.A1.layout=org.apache.log4j.PatternLayout
+
+log4j.appender.A1.layout.ConversionPattern=%d [%t] %-5p %c - %m%n
+
+log4j.logger.org.apache.directory=ERROR
+log4j.logger.org.apache.mina.filter.codec.ProtocolCodecFilter=ERROR
+log4j.logger.org.apache.mina.filter.ssl=ERROR \ No newline at end of file