summaryrefslogtreecommitdiff
path: root/src/plugins/preflighting.core/etc/log4j.properties
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/preflighting.core/etc/log4j.properties')
-rw-r--r--src/plugins/preflighting.core/etc/log4j.properties11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/preflighting.core/etc/log4j.properties b/src/plugins/preflighting.core/etc/log4j.properties
new file mode 100644
index 0000000..28edd58
--- /dev/null
+++ b/src/plugins/preflighting.core/etc/log4j.properties
@@ -0,0 +1,11 @@
+# SETS THE PLATFORM DEFAULT LOGGER CONFIGURATION
+log4j.rootLogger=ALL, default
+# LOGGING ON A FILE AT log4j.appender.default.File
+log4j.appender.default=org.apache.log4j.RollingFileAppender
+# Log will be placed at user home
+log4j.appender.default.File=${user.home}/appValidator.log
+# MAXIMUM SIZE OF THE LOG FILE
+log4j.appender.default.MaxFileSize=2048KB
+# LAYOUT BEING USED BY THE LOGGER
+log4j.appender.default.layout=org.apache.log4j.PatternLayout
+log4j.appender.default.layout.ConversionPattern=%d [%t] %-5p %c - %m%n