dfilter: Lower level of two debug messages

This commit is contained in:
João Valverde 2022-03-28 17:19:47 +01:00
parent b55e012524
commit a1299d63d9
1 changed files with 2 additions and 2 deletions

View File

@ -1451,7 +1451,7 @@ dfw_semcheck(dfwork_t *dfw)
{
volatile gboolean ok_filter = TRUE;
ws_debug("Starting semantic check (dfw = %p)", dfw);
ws_noisy("Starting semantic check (dfw = %p)", dfw);
/* Instead of having to check for errors at every stage of
* the semantic-checking, the semantic-checking code will
@ -1464,7 +1464,7 @@ dfw_semcheck(dfwork_t *dfw)
}
ENDTRY;
ws_debug("Semantic check (dfw = %p) returns %s",
ws_noisy("Semantic check (dfw = %p) returns %s",
dfw, ok_filter ? "TRUE" : "FALSE");
return ok_filter;