I've been wondering, what is the point of clog? As near as I can tell, clog is the same as cerr but with buffering so it is more efficient. Usually stderr is the same as stdout, so clog is the same as cout. This seems pretty lame to me, so I figure I must be misunderstanding it. If I have log messages going out to the same place I have error messages going out to (perhaps something in /var/log/messages), then I probably am not writing too much out (so there isn't much lost by using non-buffered cerr). In my experience, I want my log messages up to date (not buffered) so I can help find a crash (so I don't want to be using the buffered clog). Apparently I should always be using cerr.

I'd like to be able to redirect clog inside my program. It would be useful to redirect cerr so that when I call a library routine I can control where cerr and clog go to. Can some compilers support this? I just checked DJGPP and stdout is defined as the address of a FILE struct, so it is illegal to do something like "stdout = freopen(...)".

  • Is it possible to redirect clog, cerr, cout, stdin, stdout, and/or stderr?
  • Is the only difference between clog and cerr the buffering?
  • How should I implement (or find) a more robust logging facility (links please)?
link|improve this question
Usually stderr is the same as stdout is certainly not true on Unix and variants thereof. They can be redirected separately for example. – Andre Holzner Dec 31 '11 at 17:47
feedback

3 Answers

up vote 9 down vote accepted

Is it possible to redirect clog, cerr, cout, stdin, stdout, and/or stderr?

Yes. You want the rdbuf function.

ofstream ofs("logfile");
cout.rdbuf(ofs.rdbuf());
cout << "Goes to file." << endl;

Is the only difference between clog and cerr the buffering?

As far as I know, yes.

link|improve this answer
feedback

If you're in a posix shell environment (I'm really thinking of bash), you can redirect any file descriptor to any other file descriptor, so to redirect, you can just:

$ myprogram 2>&5 

to redirect stderr to the file represented by fd=5.

Edit: on second thought, I like @Konrad Rudolph's answer about redirection better. rdbuf() is a more coherent and portable way to do it.

As for logging, well...I start with the Boost library for all things C++ that isn't in the std library. Behold: Boost Logging v2

Edit: Boost Logging is not part of the Boost Libraries; it has been reviewed, but not accepted.

Edit: 2 years later, back in May 2010, Boost did accept a logging library, now called Boost.Log.

Of course, there are alternatives:

There's also the Windows Event logger.

And a couple of articles that may be of use:

link|improve this answer
2  
It should be noted that "Boost Logging v2" is not part of boost, but a proposed library that may or may not be accepted when it comes up for review. – Adam Mitz Sep 10 '08 at 4:47
Good point. The library was reviewed 2/4/2008-2/13/2008 and apparently rejected. It may be reviewed again. Probably log4cxx or log4cpp are the best bets. – Ben Collins Sep 10 '08 at 13:56
Or use a simple line-based std::cerr solution. – unixman83 Dec 18 '10 at 1:40
@sonicoder: if you'll read carefully, you'll notice that I added that caveat to my answer about 2.5 years ago. – Ben Collins Mar 15 '11 at 16:56
1  
I also highly recommend Google's GLog (code.google.com/p/google-glog), particularly for its terse assert macros with informative error messages. – SuperElectric Mar 15 '11 at 17:08
feedback

Basic Logger

#define myerr(e) {CiriticalSectionLocker crit; std::cerr << e << std::endl;}

Used as myerr("ERR: " << message); or myerr("WARN: " << message << code << etc);

Is very effective.

Then do:

./programname.exe 2> ./stderr.log
perl parsestderr.pl stderr.log

or just parse stderr.log by hand

I admit this is not for extremely performance critical code. But who writes that anyway.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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