C++ simple logging class with UTF-8 output [code example]
- by Andrew
Hello everyone,
I was working on one of my academic projects and for the first time I needed pure C++ without GUI.
After googling for a while, I did not find any simple and easy to use implementation for logging and created my own.
This is a simple implementation with iostreams that logs messages to screen and to the file simultaneously. I was…