#include "AthenaSummarySvc.h"
#include "GaudiKernel/FileIncident.h"
#include "GaudiKernel/ISvcLocator.h"
#include "GaudiKernel/Incident.h"
#include "GaudiKernel/System.h"
#include <fstream>
#include <unistd.h>
#include <exception>
#include <string_view>
#include <ctype.h>
Go to the source code of this file.
|
| static constexpr std::string | levelNames [MSG::NUM_LEVELS] |
◆ II()
◆ tolower()
| void tolower |
( |
std::string & | s | ) |
|
|
inline |
Definition at line 100 of file AthenaSummarySvc.cxx.
101{
102
103 std::transform(
s.begin(),
s.end(),
s.begin(),
104 [](unsigned char c){ return std::tolower(c); } );
105}
◆ levelNames
| std::string levelNames[MSG::NUM_LEVELS] |
|
staticconstexpr |
Initial value:= {"NIL", "VERBOSE", "DEBUG", "INFO",
"WARNING", "ERROR", "FATAL", "ALWAYS"}
Definition at line 29 of file AthenaSummarySvc.cxx.
29 {"NIL", "VERBOSE", "DEBUG", "INFO",
30 "WARNING", "ERROR", "FATAL", "ALWAYS"};