Changed so that only LOG_ERROR from exceptions cause About Log to open.

This commit is contained in:
Birunthan Mohanathas
2011-09-08 17:05:48 +00:00
parent 2e9f063cef
commit 2e128c75be
7 changed files with 35 additions and 20 deletions

View File

@ -2248,7 +2248,7 @@ void CRainmeter::ActivateConfig(int configIndex, int iniIndex)
}
catch (CError& error)
{
Log(LOG_ERROR, error.GetString().c_str());
LogError(error);
}
}
}
@ -3562,7 +3562,7 @@ void CRainmeter::RefreshAll()
}
catch (CError& error)
{
Log(LOG_ERROR, error.GetString().c_str());
LogError(error);
}
}
}