#include <array>
#include <memory>
#include <sstream>
#include <vector>
#include "ROOT/RStringView.hxx"
Classes | |
class | ROOT::Experimental::RLogDiagCounter |
Object to count the number of warnings and errors emitted by a section of code, after construction of this type. More... | |
class | ROOT::Experimental::RLogEntry |
A diagnostic, emitted by the RLogManager upon destruction of the RLogEntry. More... | |
class | ROOT::Experimental::RLogHandler |
Abstract RLogHandler base class. More... | |
class | ROOT::Experimental::RLogManager |
A RLogHandler that multiplexes diagnostics to different client RLogHandler s. More... | |
Namespaces | |
namespace | ROOT |
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tbb::task_arena without forward declaring tbb::interface7 | |
namespace | ROOT::Experimental |
Macros | |
#define | R__DEBUG_HERE(GROUP) R__LOG_HERE(ROOT::Experimental::ELogLevel::kDebug, GROUP) |
#define | R__ERROR_HERE(GROUP) R__LOG_HERE(ROOT::Experimental::ELogLevel::kError, GROUP) |
#define | R__FATAL_HERE(GROUP) R__LOG_HERE(ROOT::Experimental::ELogLevel::kFatal, GROUP) |
#define | R__INFO_HERE(GROUP) R__LOG_HERE(ROOT::Experimental::ELogLevel::kInfo, GROUP) |
#define | R__LOG_HERE(LEVEL, GROUP) ROOT::Experimental::RLogEntry(LEVEL, GROUP).SetFile(__FILE__).SetLine(__LINE__).SetFunction(R__LOG_PRETTY_FUNCTION) |
#define | R__LOG_PRETTY_FUNCTION __PRETTY_FUNCTION__ |
#define | R__WARNING_HERE(GROUP) R__LOG_HERE(ROOT::Experimental::ELogLevel::kWarning, GROUP) |
Enumerations | |
enum class | ROOT::Experimental::ELogLevel { ROOT::Experimental::kDebug , ROOT::Experimental::kInfo , ROOT::Experimental::kWarning , ROOT::Experimental::kError , ROOT::Experimental::kFatal } |
Kinds of diagnostics. More... | |
#define R__DEBUG_HERE | ( | GROUP | ) | R__LOG_HERE(ROOT::Experimental::ELogLevel::kDebug, GROUP) |
Definition at line 186 of file RLogger.hxx.
#define R__ERROR_HERE | ( | GROUP | ) | R__LOG_HERE(ROOT::Experimental::ELogLevel::kError, GROUP) |
Definition at line 183 of file RLogger.hxx.
#define R__FATAL_HERE | ( | GROUP | ) | R__LOG_HERE(ROOT::Experimental::ELogLevel::kFatal, GROUP) |
Definition at line 182 of file RLogger.hxx.
#define R__INFO_HERE | ( | GROUP | ) | R__LOG_HERE(ROOT::Experimental::ELogLevel::kInfo, GROUP) |
Definition at line 185 of file RLogger.hxx.
#define R__LOG_HERE | ( | LEVEL, | |
GROUP | |||
) | ROOT::Experimental::RLogEntry(LEVEL, GROUP).SetFile(__FILE__).SetLine(__LINE__).SetFunction(R__LOG_PRETTY_FUNCTION) |
Definition at line 179 of file RLogger.hxx.
#define R__LOG_PRETTY_FUNCTION __PRETTY_FUNCTION__ |
Definition at line 176 of file RLogger.hxx.
#define R__WARNING_HERE | ( | GROUP | ) | R__LOG_HERE(ROOT::Experimental::ELogLevel::kWarning, GROUP) |
Definition at line 184 of file RLogger.hxx.