messageservices_dune.fcl
Go to the documentation of this file.
1 #include "messageservice.fcl"
2 
3 BEGIN_PROLOG
4 
5 ########################
6 ### Message Services ###
7 ########################
8 
9 dune_message_services: {
10  debugModules: ["*"]
11  destinations: {
12  LogDebugFile: {
13  type: "file"
14  filename: "debug.log"
15  append: false
16  threshold: "DEBUG"
17  categories:{
18  default:{ limit: 0 }
19  }
20  }
21  LogStandardOut: {
22  type: "cout"
23  threshold: "WARNING"
24  categories:{
25  default:{ }
26  RecoBaseDefaultCtor: { limit: 0 }
27  AnaBaseDefaultCtor: { limit: 0 }
28  GeometryBadInputPoint: { limit: 5 timespan: 1000}
29  }
30  }
31  LogStandardError: {
32  type: "cerr"
33  threshold: "ERROR"
34  categories:{
35  default:{ }
36  }
37  }
38  }
39 }
40 
41 dune_message_services_prod_debug: {
42  debugModules: ["*"]
43  destinations: {
44  LogDebugFile: @local::dune_message_services.destinations.LogDebugFile
45  LogStandardOut: @local::dune_message_services.destinations.LogStandardOut
46  LogStandardError: @local::dune_message_services.destinations.LogStandardError
47  }
48 }
49 
50 dune_message_services_prod_debug.destinations.LogDebugFile.categories:{
51  default: { }
52  RecoBaseDefaultCtor: { limit: 0 }
53  AnaBaseDefaultCtor: { limit: 0 }
54  Track3DKalmanSPS_GenFit: { limit: 0 }
55  GeometryBadInputPoint: { limit: 5 timespan: 1000}
56  SpacePointAlg: { limit: 0 }
57  KalmanFilterAlg: { limit: 0 }
58  Track3DKalmanHit: { limit: 0 }
59  fuzzyCluster: { limit: 0}
60  ChannelFilter: { limit: 0}
61  HoughBaseAlg: { limit: 0}
62  DBscan: {limit: 0}
63  CosmicTracker: {limit: 0}
64  HitCheater: {limit: 0}
65  DisambigAlg35t: {limit: 0}
66  ClusterCheater: {limit: 0}
67  ClusterCrawlerAlg: {limit: 0}
68  CaloPrtTrk: {limit: 0}
69  CaloPrtHit: {limit: 0}
70  BackTrackerService: {limit: 0}
71  DisambigCheat: {limit: 0}
72  Summary: {limit: 0}
73  CosmicTracker: {limit: 0}
74  ClusterMergeTQ: {limit: 0}
75  LArPandora: {limit: 0}
76 }
77 
78 
79 dune_message_services_prod: {
80  debugModules: ["*"]
81  destinations: {
82  LogDebugFile: {
83  type: "file"
84  filename: "debugprod.log"
85  append: false
86  threshold: "DEBUG"
87  categories:{
88  default:{ limit: 0 }
89  }
90  }
91  LogStandardOut: {
92  type: "cout"
93  threshold: "INFO"
94  categories:{
95  ArtReport: {limit: -1}
96  default:{limit: 0}
97  }
98  }
99  LogStandardError: {
100  type: "cerr"
101  threshold: "ERROR"
102  categories:{
103  default:{}
104  }
105  }
106  }
107 }
108 
109 dune_message_services_interactive: {
110  debugModules: ["*"]
111  destinations: {
112  LogDebugFile: @local::dune_message_services.destinations.LogDebugFile
113  LogStandardOut: @local::dune_message_services.destinations.LogStandardOut
114  LogStandardError: @local::dune_message_services.destinations.LogStandardError
115  }
116 }
117 dune_message_services_interactive.destinations.LogStandardOut.threshold: "INFO"
118 dune_message_services_interactive.destinations.LogStandardOut.categories:{
119  default: { limit: 0 }
120 }
121 dune_message_services_interactive.destinations.LogStandardError.threshold: "WARNING"
122 dune_message_services_interactive.destinations.LogStandardError.categories: {
123  default: { }
124  RecoBaseDefaultCtor: { limit: 1 }
125  AnaBaseDefaultCtor: { limit: 1 }
126  GeometryBadInputPoint: { limit: 5 timespan: 1000}
127 }
128 
129 END_PROLOG