kcpp::klog is the c++ log output stream object of kcpp log output stream class to the log output device.
kcpp::klog is similar to std::clog.
The log device might be a virtual device that can be anything which can record logs.
#include <kcpp/io.hpp>
#include <kcpp/io.hpp> int main() { kcpp::klog << "Program" << 213.5 << kcpp::endl; // Program213.5 }
Back: Kcpp IO
________________________________________