I just modify the a plugin and want to logout some information.
But I found that the code below can't log out anything.
Manager::Get()->GetLogManager()->DebugLog(_("XXXXX "));
Though, the code below works
Manager::Get()->GetLogManager()->Log(_("XXXXX "));
So, my question is : Where is DebugLog output?
I read the source code and find that DebugLog() use a debug level variable to control log level. But How can I change this level? (DebugLog internally use Log function to output.)
void DebugLog(const wxString& msg, Logger::level lv = Logger::info) { Log(msg, debug_log, lv); };
Thank you!