forked from amarchen/log4qt-demo-sailfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log4qt-release.conf
41 lines (31 loc) · 1.67 KB
/
log4qt-release.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# In release mode let's log only ERRORs and FATALs to syslog,
# to console and our own log file let's add WARNs as welll, but everything less important we will ignore completely
#
# If more logs will be wanted, user will install increasedLogging package
# So rootLogger will pass everything WARN+ to all appenders, syslog appender will cut it to ERROR+ later
log4j.rootLogger=WARN, consolelog, syslog, filelog
# be a ConsoleAppender.
log4j.appender.consolelog=org.apache.log4j.ColorConsoleAppender
# use SimpleTimeLayout.
log4j.appender.consolelog.layout=org.apache.log4j.SimpleTimeLayout
# No need for SimpleTimeLayout here. journalctl will record timestamp anyway
# Let's not overload syslog and dump only ERROR+ messages to it, m
log4j.appender.syslog=org.apache.log4j.SystemLogAppender
log4j.appender.syslog.layout=org.apache.log4j.SimpleLayout
log4j.appender.syslog.serviceName=journalctl
log4j.appender.syslog.threshold=ERROR
log4j.appender.filelog=org.apache.log4j.DailyRollingFileAppender
log4j.appender.filelog.layout=org.apache.log4j.SimpleTimeLayout
# @see in main.cpp how $XDG_CACHE_HOME is replaced with full path
log4j.appender.filelog.file=$XDG_CACHE_HOME/harbour-log4qtdemo.log
################
# Class/logger specific thresholds now.
# Ones for which threshold is not specified will use root logger's WARN level
# Use stricter levels for loggers that you want to silence even more
################
# For example Company class is so stable, you only want ERROR+ messages from it
log4j.logger.Company=ERROR
# log4j.logger.bill=WARN
# console.log() as qDebug() goes to logger called "Qt" and level DEBUG. So setting it to INFO would suppress
# console.log() messages
# log4j.logger.Qt=INFO