Log in your code with plog!
Just include a lib
#include "plog.h"And in your code write following:
plogInit(); // Initialize component
infoLog("Log Worked!"); // Say something in log!
plogDestroy(); // Destroy componentThats is it!
- infoLog : Some info
- assertLog : Some info
- warningLog : Some info
- debugLog : Some info
You can change log format! But remember, you can't change count parameters
By default time format is "DAY.MONTH.YEAR HOURS:MINUTES:SECONDS" By default log format is "[[timeFormat]] [LOG_TYPE] {fileName} {functionName} {line}: log message"