void wxLogVerbose(const wxChar *szFormat, ...) { va_list argptr; va_start(argptr, szFormat); wxVLogVerbose(szFormat, argptr); va_end(argptr); }
void Logging::logVerbose( const char *szFormat, ... ) const { wxLog *pLogBak = wxLog::SetActiveTarget(m_pLogger); va_list marker; va_start( marker, szFormat ); wxVLogVerbose( wxConvertMB2WX(szFormat), marker ); va_end( marker ); wxLog::SetActiveTarget(pLogBak); }