A debugger that saves to a log file for cpp
-
Save the log and the timestamp to log/logger.log (automatically created)
-
You only need to include the header file
git clone https://github.com/danendra10/cpp-debugger.git
cd cpp-debugger
chmod +x make.sh
./make.sh
#include "logger.hpp"
int main()
{
InitLogger();
Logger(RED, "HELLO WORLD!!!");
return 1;
}
or in src/example.cpp