Browse Source

log message is changed to debug level in cfg_lookup_var(),
the message does not indicate an error in the framework

Miklos Tirpak 17 years ago
parent
commit
780542a5ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cfg/cfg_struct.c

+ 1 - 1
cfg/cfg_struct.c

@@ -482,7 +482,7 @@ int cfg_lookup_var(str *gname, str *vname,
 			break;
 		}
 
-	LOG(L_ERR, "ERROR: cfg_lookup_var(): variable not found: %.*s.%.*s\n",
+	LOG(L_DBG, "DEBUG: cfg_lookup_var(): variable not found: %.*s.%.*s\n",
 			gname->len, gname->s,
 			vname->len, vname->s);
 	return -1;