Skip to content
Snippets Groups Projects
Commit 1b5e0fdb authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

Merge branch 'add-rich-debug-verbose-counter-defines' into 'master'

Add defines for VerboseCounter and DebugCounter to RichCommonBase

See merge request !3813
parents a093ab7c 96e0cbd1
No related branches found
No related tags found
1 merge request!3813Add defines for VerboseCounter and DebugCounter to RichCommonBase
Pipeline #4613048 passed
......@@ -122,9 +122,12 @@ namespace Rich {
protected:
// definitions
using WarningCounter = Gaudi::Accumulators::MsgCounter<MSG::WARNING>; ///< Warning counter
using ErrorCounter = Gaudi::Accumulators::MsgCounter<MSG::ERROR>; ///< Error counter
template <MSG::Level LEVEL>
using MsgCounter = Gaudi::Accumulators::MsgCounter<LEVEL>;
using VerboseCounter = MsgCounter<MSG::VERBOSE>;
using DebugCounter = MsgCounter<MSG::DEBUG>;
using WarningCounter = MsgCounter<MSG::WARNING>;
using ErrorCounter = MsgCounter<MSG::ERROR>;
};
} // namespace Future
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment