summaryrefslogtreecommitdiff
path: root/cel
diff options
context:
space:
mode:
authorRodrigo Ramírez Norambuena <decipher.hk@gmail.com>2015-04-14 15:16:45 -0300
committerMatt Jordan <mjordan@digium.com>2015-04-15 06:17:34 -0500
commit33a319ae734460fed029e407553214a3604aca85 (patch)
tree7b346c2bd6fa5ec377b9d6719a5a08aab97c0f34 /cel
parent9f5ba58332119dd283eed3d202b0a64aa0394f12 (diff)
cel_pgsql: Fix name string for log on unable allocate memory.
The LOG_ERROR has reference to CDR instead of CEL for LENGTHEN_BUF1 and LENGTHEN_BUF2. ASTERISK-24965 #close Reported by: Rodrigo Ramirez Norambuena Change-Id: Icc818697d7d66d34bfe3048cdd15ca2b06c89744
Diffstat (limited to 'cel')
-rw-r--r--cel/cel_pgsql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cel/cel_pgsql.c b/cel/cel_pgsql.c
index bb4215199..2d7f0dfb0 100644
--- a/cel/cel_pgsql.c
+++ b/cel/cel_pgsql.c
@@ -101,7 +101,7 @@ static AST_RWLIST_HEAD_STATIC(psql_columns, columns);
/* Lengthen buffer, if necessary */ \
if (ast_str_strlen(sql) + size + 1 > ast_str_size(sql)) { \
if (ast_str_make_space(&sql, ((ast_str_size(sql) + size + 3) / 512 + 1) * 512) != 0) { \
- ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
+ ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CEL '%s:%s' failed.\n", pghostname, table); \
ast_free(sql); \
ast_free(sql2); \
AST_RWLIST_UNLOCK(&psql_columns); \
@@ -114,7 +114,7 @@ static AST_RWLIST_HEAD_STATIC(psql_columns, columns);
do { \
if (ast_str_strlen(sql2) + size + 1 > ast_str_size(sql2)) { \
if (ast_str_make_space(&sql2, ((ast_str_size(sql2) + size + 3) / 512 + 1) * 512) != 0) { \
- ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
+ ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CEL '%s:%s' failed.\n", pghostname, table); \
ast_free(sql); \
ast_free(sql2); \
AST_RWLIST_UNLOCK(&psql_columns); \