Merge "sorcery/realtime: Add a bit of debug and warning messages for bad configs"

This commit is contained in:
Matt Jordan 2015-07-02 08:02:08 -05:00 committed by Gerrit Code Review
commit a889cfa0b9
2 changed files with 5 additions and 0 deletions

View file

@ -2869,6 +2869,7 @@ int ast_realtime_is_mapping_defined(const char *family)
return 1;
}
}
ast_debug(5, "Failed to find a realtime mapping for %s\n", family);
return 0;
}

View file

@ -991,7 +991,11 @@ enum ast_sorcery_apply_result __ast_sorcery_insert_wizard_mapping(struct ast_sor
}
}
ast_debug(5, "Calling wizard %s open callback on object type %s\n",
name, object_type->name);
if (wizard->callbacks.open && !(object_wizard->data = wizard->callbacks.open(data))) {
ast_log(LOG_WARNING, "Wizard '%s' failed to open mapping for object type '%s' with data: %s\n",
name, object_type->name, S_OR(data, ""));
AST_VECTOR_RW_UNLOCK(&object_type->wizards);
return AST_SORCERY_APPLY_FAIL;
}