From d1fe359e4722e168fcd3fda0be87538b4e2c7ed1 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Fri, 19 Nov 2021 11:44:57 -0800 Subject: [PATCH] gnc_numeric_to_decimal: Change can't round warning to a debug. Routinely used as a check so a warning isn't appropriate. --- libgnucash/engine/gnc-numeric.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgnucash/engine/gnc-numeric.cpp b/libgnucash/engine/gnc-numeric.cpp index 277e01e0f2..0915f4156e 100644 --- a/libgnucash/engine/gnc-numeric.cpp +++ b/libgnucash/engine/gnc-numeric.cpp @@ -1090,7 +1090,7 @@ gnc_numeric_to_decimal(gnc_numeric *a, guint8 *max_decimal_places) } catch (const std::exception& err) { - PWARN("%s", err.what()); + DEBUG("%s", err.what()); return FALSE; } }