Upgrade hibernator and netty
[policy/engine.git] / POLICY-SDK-APP / policyLogger.properties
1 ################################### Set concurrentHashMap and timer info  #######################
2 #Timer initial delay and the delay between in milliseconds before task is to be execute.
3 timer.delay.time=1000
4 #Timer scheduleAtFixedRate period - time in milliseconds between successive task executions.
5 check.interval= 30000
6 #Longest time an event info can be stored in the concurrentHashMap for logging - in seconds. 
7 event.expired.time=86400
8 #Size of the concurrentHashMap which stores the event starting time, etc - when its size reaches this limit, the Timer gets executed 
9 #to remove all expired records from this concurrentHashMap.
10 concurrentHashMap.limit=5000
11 #Size of the concurrentHashMap - when its size drops to this point, stop the Timer
12 stop.check.point=2500
13 ################################### Set logging format #############################################
14 # set EELF for EELF logging format, set LOG4J for using log4j, set SYSTEMOUT for using system.out.println
15 logger.type=SYSTEMOUT
16 #################################### Set level for EELF or SYSTEMOUT logging ##################################
17 # Set level for debug file. Set DEBUG to enable .info, .warn and .debug; set INFO for enable .info and .warn; set OFF to disable all 
18 debugLogger.level=INFO
19 # Set level for metrics file. Set OFF to disable; set ON to enable
20 metricsLogger.level=ON
21 # Set level for error file. Set OFF to disable; set ON to enable
22 error.level=ON
23 # Set level for audit file. Set OFF to disable; set ON to enable
24 audit.level=ON