aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_config_ldap.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-21 12:53:48 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-21 12:53:48 +0000
commitded3c0711728a736c1fd62b99a0c0f470598c882 (patch)
treee3e65a3c11ddc3aa1263aa4a665ea80874a959a9 /res/res_config_ldap.c
parent4c583c01273c0cdf881503156af6e27683e1f84c (diff)
Reduce warning to debug, otherwise we flood the log when we (legitimately)
can't find a record. (Closes issue #12908) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@124505 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_config_ldap.c')
-rw-r--r--res/res_config_ldap.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c
index 01050ca04..6b20ab53b 100644
--- a/res/res_config_ldap.c
+++ b/res/res_config_ldap.c
@@ -588,9 +588,9 @@ static struct ast_variable *ldap_loadentry(struct ldap_table_config *table_confi
vars = realtime_ldap_result_to_vars(table_config, ldap_result, entries_count_ptr);
if (num_entry > 1)
- ast_log(LOG_WARNING, "More than one entry for dn=%s. Take only 1st one\n", dn);
+ ast_log(LOG_NOTICE, "More than one entry for dn=%s. Take only 1st one\n", dn);
} else {
- ast_log(LOG_WARNING, "Could not find any entry dn=%s.\n", dn);
+ ast_debug(2, "Could not find any entry dn=%s.\n", dn);
}
}
ldap_msgfree(ldap_result);
@@ -816,7 +816,7 @@ static struct ast_variable **realtime_ldap_base_ap(unsigned int *entries_count_p
/* is this a static var or some other? they are handled different for delimited values */
vars = realtime_ldap_result_to_vars(table_config, ldap_result, entries_count_ptr);
} else {
- ast_log(LOG_WARNING, "Could not find any entry matching %s in base dn %s.\n",
+ ast_debug(1, "Could not find any entry matching %s in base dn %s.\n",
filter->str, clean_basedn);
}
@@ -942,7 +942,7 @@ static struct ast_config *realtime_multi_ldap(const char *basedn,
if (vars) {
cfg = ast_config_new();
if (!cfg) {
- ast_log(LOG_WARNING, "Out of memory!\n");
+ ast_log(LOG_ERROR, "Unable to create a config!\n");
} else {
struct ast_variable **p = vars;
@@ -950,7 +950,7 @@ static struct ast_config *realtime_multi_ldap(const char *basedn,
struct ast_category *cat = NULL;
cat = ast_category_new("", table_name, -1);
if (!cat) {
- ast_log(LOG_WARNING, "Out of memory!\n");
+ ast_log(LOG_ERROR, "Unable to create a new category!\n");
break;
} else {
struct ast_variable *var = *p;
@@ -1022,7 +1022,7 @@ static struct ast_config *config_ldap(const char *basedn, const char *table_name
struct ast_variable **p;
if (ast_strlen_zero(file) || !strcasecmp(file, RES_CONFIG_LDAP_CONF)) {
- ast_log(LOG_WARNING, "Cannot configure myself.\n");
+ ast_log(LOG_ERROR, "Cannot configure myself.\n");
return NULL;
}
@@ -1191,7 +1191,7 @@ static int update_ldap(const char *basedn, const char *table_name, const char *a
newval = va_arg(ap, const char *);
if (!newparam || !newval) {
ast_log(LOG_WARNING,
- "LINE(%d): need at least one paramter to modify.\n", __LINE__);
+ "LINE(%d): need at least one parameter to modify.\n", __LINE__);
return -1;
}