When do I use std::clog
and std::cerr
in c++?
What's difference between clog << "test" << endl;
and cerr << "test" << endl;
?
Does clog << "0"
without endl
print directly with no buffer?
When do I use std::clog
and std::cerr
in c++?
What's difference between clog << "test" << endl;
and cerr << "test" << endl;
?
Does clog << "0"
without endl
print directly with no buffer?
Copyright © 2021 Jogjafile Inc.
As per the documentation clog sends character output to the environment's standard logging stream, whereas cerr sends output to the error stream. These streams, as handled by the environment, can be made to point to different logging facilities, for example. In production code, one often needs to send more important logging events (noting errors and the like) to a specific logging facility - for off site storage or alerting for instance. With that in mind, start getting in the practice of using the lower severity clog function unless you really are noting an error condition!