aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-05-26 16:21:00 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-05-26 16:21:00 +0000
commit9fc1815748e72b7048e51c8ccff500929419f659 (patch)
treed0720e5e5a615c21a6c0814f6718d83171fe1a7c
parentfa2c4751b57c7df00e3a34fe1f9fe60966698c53 (diff)
Not finding rows in the DB does not rise to the level of a warning.
(closes issue #17062) Reported by: drookie Patches: 20100525__issue17062.diff.txt uploaded by tilghman (license 14) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@265910 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--res/res_config_pgsql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_config_pgsql.c b/res/res_config_pgsql.c
index 986223480..26bb1c0d0 100644
--- a/res/res_config_pgsql.c
+++ b/res/res_config_pgsql.c
@@ -366,7 +366,7 @@ static struct ast_config *realtime_multi_pgsql(const char *database, const char
}
ast_free(fieldnames);
} else {
- ast_log(LOG_WARNING,
+ ast_log(LOG_DEBUG,
"Postgresql RealTime: Could not find any rows in table %s.\n", table);
}