[gnc-numeric.cpp] Reduce logging level of gnc_numeric exception message

Exceptions are expected in some use cases.
This commit is contained in:
Christopher Lam 2022-04-08 22:34:15 +08:00
parent ebbf7565c9
commit aab33954e7

View File

@ -1090,7 +1090,7 @@ gnc_numeric_to_decimal(gnc_numeric *a, guint8 *max_decimal_places)
}
catch (const std::exception& err)
{
PWARN("%s", err.what());
PINFO ("%s", err.what());
return FALSE;
}
}