}
}
+ ~InfoLog(void)
+ {
+ delete m_Stream;
+ }
+
void WriteLine(const LogSeverity sev, const String& str)
{
if (!m_Console)
InfoLogLine(InfoLog& log, LogSeverity sev = LogInformation)
: m_Log(log), m_Sev(sev) {}
- ~InfoLogLine()
+ ~InfoLogLine(void)
{
m_Log.WriteLine(m_Sev, m_String.str());
}
bool TroubleshootCommand::FeatureInfo(InfoLog& log, const boost::program_options::variables_map& vm)
{
TroubleshootCommand::CheckFeatures(log);
- //TODO Check whether active faetures are operational.
+ //TODO Check whether active features are operational.
return true;
}