51    static int _verbosityLevel;
 
   65    static void printf(
int level, 
const char * fmt, ...);
 
   85    static bool ifPrinted(
int x) {
return  (x <= _verbosityLevel); }
 
 
Print messages to the console at varying levels of verbosity.
Definition Print.h:50
static const int WARNING
Definition Print.h:57
static void printDateTimeString()
Print the date and time to the console.
Definition Print.cpp:150
static const int INFO
Definition Print.h:56
static int verbosityLevel()
Gets the verbosity level. Lower numbers are higher priority.
Definition Print.h:76
static const int FATAL
Definition Print.h:59
static const int ERROR
Definition Print.h:58
static const int DEBUG
Definition Print.h:55
static const int VERBOSE_DEBUG
Definition Print.h:54
static void verbosityLevel(int x)
Sets the verbosity level. Lower numbers are higher priority.
Definition Print.h:80
static bool ifPrinted(int x)
True if a call to Print::printf(x, ...) would print to stdout.
Definition Print.h:85
static std::string getDateTimeString()
Gets the date and time as a string.
Definition Print.cpp:160
static void printf(int level, const char *fmt,...)
Prints to the console at varying levels of verbosity or "Severity".
Definition Print.cpp:70
Definition Capsule.cpp:46