Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
3k views

Redirect C++ std::clog to syslog on Unix

I work on Unix on a C++ program that send messages to syslog. The current code uses the syslog system call that works like printf. Now I would prefer to use a stream for that purpose instead, ...
2
votes
4answers
1k views

How to redefine clog to tee to original clog and a log file?

I saw a useful start here: http://www.cs.technion.ac.il/~imaman/programs/teestream.html And it works great to make a new stream which goes to both clog and a log file. However, if I try to redefine ...
1
vote
4answers
196 views

What directive can I give a stream to print leading zeros on a number in C++?

I know how to cause it to be in hex: unsigned char myNum = 0xA7; clog << "Output: " std::hex << int(myNum) << endl; // Gives: // Output: A7 Now I want it to always print a ...
0
votes
1answer
260 views

How to redefine both cerr and clog to both tee to a shared log file?

A related question here shows how to do this with just clog: How to redefine clog to tee to original clog and a log file? The question now is how to also do this for cerr at the same time. With the ...
0
votes
1answer
377 views

How to redefine clog's rdbuf() to be a tee to the original rdbuf() of clog and that of a log file?

Does anyone have an example of how to redefine the C++ built in clog to instead have a new associated rdbuf() which is processed to be a tee to the original clog.rdbuf() and the rdbuf() of a ofstream ...
0
votes
1answer
416 views

Why doesn't my change to clog stick?

I think I'm failing to understand some finer point of C++. I want to set up a log of what my program does, and discovered std::clog, which seems to do what I want in theory, but in practice it ...