Skip to content

Commit

Permalink
Lower verbosity of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rojer committed Oct 21, 2021
1 parent bf762e0 commit ce8742b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mgos_config_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void mgos_conf_parse_cb(void *data, const char *name, size_t name_len,
const struct mgos_conf_entry *e =
mgos_conf_find_schema_entry(path, ctx->schema);
if (e == NULL) {
LOG(LL_INFO, ("Extra key: [%s]", path));
LOG(LL_DEBUG, ("Unknown key [%s]", path));
return;
}
#ifndef MGOS_BOOT_BUILD
Expand Down

0 comments on commit ce8742b

Please sign in to comment.