Don't use literal for CLIXON_DBG_XXX

This commit is contained in:
Philip Prindeville 2024-01-04 13:56:13 -07:00 committed by Olof Hagsand
parent 2a90faf012
commit 86667a0190
6 changed files with 12 additions and 12 deletions

View file

@ -164,7 +164,7 @@ xml2cvec(cxobj *xt,
while ((xc = xml_child_each(xt, xc, CX_ELMNT)) != NULL){
name = xml_name(xc);
if ((ys = yang_find_datanode(yt, name)) == NULL){
clixon_debug(0, "%s: yang sanity problem: %s in xml but not present in yang under %s",
clixon_debug(CLIXON_DBG_ALWAYS, "%s: yang sanity problem: %s in xml but not present in yang under %s",
__FUNCTION__, name, yang_argument_get(yt));
if ((body = xml_body(xc)) != NULL){
if ((cv = cv_new(CGV_STRING)) == NULL){