Reduce log priorities.

This commit is contained in:
David Schwartz
2014-01-03 10:10:31 -08:00
committed by Vinnie Falco
parent 00c87ca2dd
commit 1fcb2872b9
4 changed files with 65 additions and 67 deletions

View File

@@ -26,7 +26,7 @@ SerializedType& SerializedType::operator= (const SerializedType& t)
{
if ((t.fName != fName) && fName->isUseful () && t.fName->isUseful ())
{
WriteLog ((t.getSType () == STI_AMOUNT) ? lsDEBUG : lsWARNING, SerializedType) // This is common for amounts
WriteLog ((t.getSType () == STI_AMOUNT) ? lsTRACE : lsWARNING, SerializedType) // This is common for amounts
<< "Caution: " << t.fName->getName () << " not replacing " << fName->getName ();
}