vote up 3 vote down star

what is good practice for generating verbose output? currently, i have a function

bool verbose;
int setVerbose(bool v)
{
    errormsg = "";
    verbose = v;
    if (verbose == v)
    	return 0;
    else
    	return -1;
}

and whenever i want to generate output, i do something like

if (debug)
     std::cout << "deleting interp" << std::endl;

however, i don't think that's very elegant. so i wonder what would be a good way to implement this verbosity switch?

flag

Dosen't your setVerbose always return 0? – Lucas McCoy Aug 10 at 15:39
yes, unless something extremely esoteric happens. it's just that i have a bunch of setSomething() functions which all return 0 if the operation was successful and -1 if not. so it's just a question of having a consistent interface ... – andreash Aug 10 at 16:07

4 Answers

vote up 1 vote down check

The simplest way is to create small class as follows(here is Unicode version, but you can easily change it to single-byte version):

#include <sstream>
#include <boost/format.hpp>
#include <iostream>
using namespace std;

enum log_level_t {
    LOG_NOTHING,
    LOG_CRITICAL,
    LOG_ERROR,
    LOG_WARNING,
    LOG_INFO,
    LOG_DEBUG
};

namespace log_impl {
class formatted_log_t {
public:
    formatted_log_t( log_level_t level, const wchar_t* msg ) : fmt(msg), level(level) {}
    ~formatted_log_t() {
        // GLOBAL_LEVEL is a global variable and could be changed at runtime
        // Any customization could be here
        if ( level <= GLOBAL_LEVEL ) wcout << level << L" " << fmt << endl;
    }        
    template <typename T> 
    formatted_log_t& operator %(T value) {
        fmt % value;
        return *this;
    }    
protected:
    log_level_t		level;
    boost::wformat  	fmt;
};
}//namespace log_impl
// Helper function. Class formatted_log_t will not be used directly.
template <log_level_t level>
log_impl::formatted_log_t log(const wchar_t* msg) {
    return log_impl::formatted_log_t( level, msg );
}

Helper function log was made template to get nice call syntax. Then it could be used in the following way:

int main ()
{
    // Log level is clearly separated from the log message
    log<LOG_DEBUG>(L"TEST %3% %2% %1%") % 5 % 10 % L"privet";
    return 0;
}

You could change verbosity level at runtime by changing global GLOBAL_LEVEL variable.

link|flag
i like this answer. i really only need this very simple stdout logging, no file/network stuff ever needed (i hope). so i will try to keep the number of external dependencies low and go for my own implementation. – andreash Aug 24 at 18:07
vote up 3 vote down
int threshold = 3;
class mystreambuf: public std::streambuf
{
};
mystreambuf nostreambuf;
std::ostream nocout(&nostreambuf);
#define log(x) ((x >= threshold)? std::cout : nocout)

int main()
{
    log(1) << "No hello?" << std::endl;     // Not printed on console, too low log level.
    log(5) << "Hello world!" << std::endl;  // Will print.
    return 0;
}
link|flag
would there be a possibility to 'include' the std::endl into the log() definition? – andreash Aug 10 at 15:52
Define log(x) can be easily replaced with inline function. Is there reason to use defines here? – Kirill V. Lyadvinsky Aug 10 at 16:47
Regarding std::endl: none that I know of. If you want less code, you could always use typedef, such as _e. Regardig #define/inline: no reason. – Jonas Byström Aug 11 at 6:39
vote up 3 vote down

You can wrap your functionality in a class that supports the << operator which allows you to do something like

class Trace {
   public:
      enum { Enable, Disable } state;
   // ...
   operator<<(...)
};

Then you can do something like

trace << Trace::Enable;
trace << "deleting interp"
link|flag
I like the idea of wrapping an error-logging system in a class. You can store things like location of output file and whatnot in the class, too. – Brian Aug 10 at 15:38
just so i understand you correctly: i would create an instance of Trace class called trace before? and then another question: why is Trace::Enable enough to set the state to Enable? i'm still fairly new to c++, and am a bit confused. perhaps some three lines more in your idea would help me understand better what's going on. but i definitely like your idea! – andreash Aug 10 at 16:11
1  
Yes, you would need to create an instance of teh Trace class; this could be statically or locally to each component that wished to use it. The Trace::Enable would toggle an internal flag within the Trace class (an instance of the state enum). This would act very much like std::hex allows std::cout to output in hex format instead of decimal. Since you will be writing operator<< you can support Trace::Enable (or any other state specifiers such as verbosity and such) – ezpz Aug 10 at 16:23
1  
Andreash, Trace::Enable would be enough to set the state to Enable because you're going to write code for the << operator that makes your class know how to handle that flag. There's no magic here. Personally, I'd just make an ordinary member function and say trace.enable(). – Rob Kennedy Aug 10 at 17:10
vote up 3 vote down

You could use log4cpp

link|flag
Does that have asynchronous logging capabilities? – windfinder Aug 10 at 15:37
I don't know if it does or not. sorry. – Glen Aug 10 at 15:46
3  
I agree that using a proper logging library is the answer rather than hand-coding something, although Log4cpp appears to be moribund. logging.apache.org/log4cxx/index.html on the other hand is alive and kicking. According to the web site it does have support for asynchronous logging, though i don't think that's relevant to this question. – jon hanson Aug 10 at 16:13
+1 for suggesting log4cxx, I'd forgotten about that one. – Glen Aug 10 at 16:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.