|
OpenSDN source code
|
#include <string>#include <base/feature_flags.h>#include <assert.h>#include <map>#include <iostream>#include <sstream>
Go to the source code of this file.
Namespaces | |
| process | |
Macros | |
| #define | FLAG_DEBUG(args...) if (process::debug_) LOG(DEBUG, ##args) |
| #define | FLAG_WARN(args...) if (process::debug_) LOG(WARN, ##args) |
| #define | FLAG_ERROR(args...) if (process::debug_) LOG(ERROR, ##args) |
Variables | |
| bool | process::debug_ = true |
| #define FLAG_DEBUG | ( | args... | ) | if (process::debug_) LOG(DEBUG, ##args) |
Definition at line 20 of file feature_flags.cc.
| #define FLAG_ERROR | ( | args... | ) | if (process::debug_) LOG(ERROR, ##args) |
Definition at line 22 of file feature_flags.cc.
| #define FLAG_WARN | ( | args... | ) | if (process::debug_) LOG(WARN, ##args) |
Definition at line 21 of file feature_flags.cc.