14 #ifndef ZOLTAN2_DEBUGMANAGER_HPP
15 #define ZOLTAN2_DEBUGMANAGER_HPP
61 myOS_(static_cast<std::ostream *>(&debugOs)), fileOS_(&debugOs),
62 iPrint_(doPrinting) {}
73 myOS_(&debugOs), fileOS_(NULL), iPrint_(doPrinting) {}
86 inline std::ostream *
getOStream()
const {
return myOS_; };
101 #ifndef Z2_OMIT_ALL_STATUS_MESSAGES
102 if (debugLevel <= debugLevel_ && iPrint_)
103 *myOS_ << myPID_ <<
": " << output << std::endl;
117 #ifndef Z2_OMIT_ALL_STATUS_MESSAGES
118 if (debugLevel <= debugLevel_)
119 *myOS_ << myPID_ <<
": " << output << std::endl;
132 #ifndef Z2_OMIT_ALL_STATUS_MESSAGES
133 if (debugLevel <= debugLevel_ && iPrint_)
134 *myOS_ << myPID_ <<
": " << output << std::endl;
147 #ifndef Z2_OMIT_ALL_STATUS_MESSAGES
148 if (debugLevel <= debugLevel_)
149 *myOS_ <<
"PID =" << myPID_ <<
" " << output << std::endl;
158 std::ofstream *fileOS_;
void print(MessageOutputLevel debugLevel, const std::string &output)
Print a debug or status message, if this process is one of those that is supposed to be doing output...
DebugManager(int rank, bool doPrinting, std::ofstream &debugOs, MessageOutputLevel debugLevel)
Constructor for output to an ofstream.
MessageOutputLevel
The amount of debugging or status output to print.
Defines Parameter related enumerators, declares functions.
void printInAllTasks(MessageOutputLevel debugLevel, const char *output)
The const char * versions of print functions are needed to avoid the expensive conversion to string...
MessageOutputLevel getDebugLevel() const
Return the highest level of message that will be printed.
void print(MessageOutputLevel debugLevel, const char *output)
The const char * versions of print functions are needed to avoid the expensive conversion to string...
virtual ~DebugManager()
Destructor.
void printInAllTasks(MessageOutputLevel debugLevel, const std::string &output)
Print a debug or status message regardless of whether this process is one of those that is supposed t...
DebugManager contains the methods that perform output of debug and status messages.
DebugManager(int rank, bool doPrinting, std::ostream &debugOs, MessageOutputLevel debugLevel)
Constructor for output to an iostream.
std::ostream * getOStream() const
Return the output stream for debug/status messages.