#include <iomanip>
#include <iostream>
#include <string>
#include <type_traits>
Go to the source code of this file.
|
#define | WARNINGLEVEL 1 |
|
#define | ENABLE_DEBUG(X) |
|
#define | DEBUG(X) |
| Used for printing verbose debugging messages, only if DEBUGLEVEL is defined.
|
|
#define | INFO(X) |
| Used for printing information messages, and will always be printed.
|
|
#define | ERROR(X) |
| Used for printing errors messages, and will always be printed.
|
|
#define | FATAL(X) |
| Used for printing fatal errors messages, and will always be printed and will terminate the process afterwards.
|
|
#define | WARNING(X) |
| Used for printing warning messages, can be switched off using WARNINGLEVEL.
|
|
◆ ENABLE_DEBUG
#define ENABLE_DEBUG |
( |
| X | ) |
|
Value: namespace AmpGen {
namespace detail {
template <>
struct debug_type <X> : std::true_type {}; } }
Definition at line 54 of file MsgService.h.
◆ WARNINGLEVEL