C
carl
I have a large application that performs many different task where some
tasks can take up to minutes to complete (loading of large 3D volume data).
Currently I do like this:
std::cout << "INFO:: Parameters parsed with sucess" << std::endl;
....
....
std::cout << "INFO:: Images loaded" << std::endl;
which gets printed to the console when the application is executed. But is
there a more systematic approach to this like a C++ logger which can easily
be turned on or off?
tasks can take up to minutes to complete (loading of large 3D volume data).
Currently I do like this:
std::cout << "INFO:: Parameters parsed with sucess" << std::endl;
....
....
std::cout << "INFO:: Images loaded" << std::endl;
which gets printed to the console when the application is executed. But is
there a more systematic approach to this like a C++ logger which can easily
be turned on or off?