messagefacility.fcl
Go to the documentation of this file.
1 message : {
2 
3  destinations : {
4 
5  dest1 : {
6 
7  type : file // or cerr, cout, syslog, sqlite ### TEST DEVELOPED ###
8  filename : "somefile.txt" ### TEST DEVELOPED ###
9 
10  outputStatistics : false
11  resetStatistics : false
12 
13  categories : {
14 
15  default : {
16  limit : 10 // some int
17  reportEvery : 10 // some int
18  timespan : 10 // some int
19  }
20 
21  }
22 
23  threshold : "INFO" // some string ### TEST DEVELOPED ###
24  format: {
25  timestamp: default_ms ### TEST DEVELOPED ###
26  noLineBreaks : true ### TEST DEVELOPED ###
27  }
28 
29  }
30 
31  dest2: {
32  type: cout
33  }
34  statistics : { ### TEST DEVELOPED ###
35 
36 
37  dest1 : { ### TEST DEVELOPED ###
38  type : file ### TEST DEVELOPED ###
39  filename : "statistics.txt" ### TEST DEVELOPED ###
40  reset : true ### TEST DEVELOPED ###
41  }
42  }
43  }
44 }