Tweak some log messages to remove redundant info

This commit is contained in:
Birunthan Mohanathas 2013-09-14 12:57:33 +03:00
parent b0423cd3ff
commit 8b68092cf1
2 changed files with 2 additions and 2 deletions

View File

@ -877,5 +877,5 @@ Measure* Measure::Create(const WCHAR* measure, MeterWindow* meterWindow, const W
*/
void Measure::Command(const std::wstring& command)
{
LogWarningF(this, L"!CommandMeasure: Not supported by [%s]", m_Name.c_str());
LogWarningF(this, L"!CommandMeasure: Not supported");
}

View File

@ -91,7 +91,7 @@ void MeasureCPU::ReadOptions(ConfigParser& parser, const WCHAR* section)
if (processor < 0 || processor > c_NumOfProcessors)
{
LogWarningF(this, L"CPU: Processor=%i invalid in [%s]", processor, section);
LogWarningF(this, L"CPU: Processor=%i is not valid", processor);
processor = 0;
}