Index: res/res_config_pgsql.c =================================================================== --- res/res_config_pgsql.c (revision 265316) +++ res/res_config_pgsql.c (working copy) @@ -405,8 +405,6 @@ } } ast_free(fieldnames); - } else { - ast_debug(1, "Postgresql RealTime: Could not find any rows in table %s@%s.\n", tablename, database); } ast_mutex_unlock(&pgsql_lock); @@ -562,9 +560,6 @@ ast_category_append(cfg, cat); } ast_free(fieldnames); - } else { - ast_log(LOG_WARNING, - "PostgreSQL RealTime: Could not find any rows in table %s.\n", table); } ast_mutex_unlock(&pgsql_lock); @@ -637,7 +632,7 @@ newval = va_arg(ap, const char *); if (!find_column(table, newparam)) { - ast_log(LOG_WARNING, "Attempted to update column '%s' in table '%s', but column does not exist!\n", newparam, tablename); + ast_log(LOG_NOTICE, "Attempted to update column '%s' in table '%s', but column does not exist!\n", newparam, tablename); continue; } @@ -1111,9 +1106,6 @@ new_v = ast_variable_new(field_var_name, field_var_val, ""); ast_variable_append(cur_cat, new_v); } - } else { - ast_log(LOG_WARNING, - "PostgreSQL RealTime: Could not find config '%s' in database.\n", file); } PQclear(result);