5 #include "gutsConventions.h"
9 #include "G4UIsession.hh"
39 explicit GLogger(GOptions* gopts, std::string vname)
40 : name(std::move(vname)), log_counter(0) {
41 verbosity_level = gopts->getVerbosityFor(name);
42 debug_level = gopts->getDebugFor(name);
67 template <
typename... Args>
69 if (debug_level == 0)
return;
71 std::ostringstream oss;
72 (oss << ... << std::forward<Args>(args));
76 G4cout << KYEL << header_string() << oss.str() << RST << G4endl;
79 G4cout << KCYN << header_string() << CONSTRUCTORLOG <<
" constructor " << CONSTRUCTORLOG <<
" " << RST << oss.str() << G4endl;
82 G4cout << KCYN << header_string() << DESTRUCTORLOG <<
" destructor " << DESTRUCTORLOG <<
" " << RST << oss.str() << G4endl;
96 template <
typename... Args>
97 void info(
int level, Args&&... args)
const {
100 if (level != 0 && level != 1 && level != 2 ) {
101 G4cerr << FATALERRORL << header_string() << GWARNING <<
" Invalid verbosity level requested: " << level << RST << G4endl;
102 exit(EC_WRONG_VERBOSITY_LEVEL);
105 if (level == 0 || (level == 1 && verbosity_level > 0) || (level == 2 && verbosity_level > 1)) {
106 std::ostringstream oss;
107 (oss << ... << std::forward<Args>(args));
108 G4cout << header_string() << oss.str() << G4endl;
118 template <
typename... Args>
119 void info(Args&&... args)
const {
120 info(0, std::forward<Args>(args)...);
131 template <
typename... Args>
133 std::ostringstream oss;
134 (oss << ... << std::forward<Args>(args));
135 G4cout << KYEL << header_string() << GWARNING << oss.str() << RST << G4endl;
147 template <
typename... Args>
148 [[noreturn]]
void error(
int exit_code, Args&&... args)
const {
149 std::ostringstream oss;
150 (oss << ... << std::forward<Args>(args));
151 G4cerr << FATALERRORL << header_string() << KRED << oss.str() << RST << G4endl;
152 std::exit(exit_code);
161 template <
typename... Args>
163 std::ostringstream oss;
164 (oss << ... << std::forward<Args>(args));
165 G4cout << KBOLD << header_string() << RST << oss.str() << G4endl;
173 mutable std::atomic<int> log_counter;
182 [[nodiscard]] std::string header_string()
const {
184 return name +
" [" + std::to_string(log_counter.load()) +
"] ";
Handles structured logging with verbosity and debug levels.
void warning(Args &&... args) const
Logs a warning message.
void debug(debug_type type, Args &&... args) const
Logs a debug message if the debug level is nonzero.
GLogger(GOptions *gopts, std::string vname)
Constructs a GLogger instance.
void info(Args &&... args) const
Overloaded version of info() with default level = 0.
void critical(Args &&... args) const
Logs a critical message. Always printed.
void info(int level, Args &&... args) const
Logs an info message, conditionally based on verbosity level.
void error(int exit_code, Args &&... args) const
Logs an error message and exits the application.
debug_type
Enumerates debug message types.