mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
Add a massive set of changes for converting to use the ast_debug() macro.
(issue #9957, patches from mvanbaak, caio1982, critch, and dimas) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@69327 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -909,7 +909,7 @@ realtime_handler(const char *database, const char *table, va_list ap)
|
||||
}
|
||||
|
||||
query = tmp_str;
|
||||
ast_log(LOG_DEBUG, "SQL query: %s\n", query);
|
||||
ast_debug(1, "SQL query: %s\n", query);
|
||||
args.var = NULL;
|
||||
args.last = NULL;
|
||||
|
||||
@@ -1074,7 +1074,7 @@ static struct ast_config *realtime_multi_handler(const char *database,
|
||||
|
||||
sqlite_freemem(query);
|
||||
query = tmp_str;
|
||||
ast_log(LOG_DEBUG, "SQL query: %s\n", query);
|
||||
ast_debug(1, "SQL query: %s\n", query);
|
||||
args.cfg = cfg;
|
||||
args.initfield = initfield;
|
||||
|
||||
@@ -1157,7 +1157,7 @@ static int realtime_update_handler(const char *database, const char *table,
|
||||
|
||||
sqlite_freemem(query);
|
||||
query = tmp_str;
|
||||
ast_log(LOG_DEBUG, "SQL query: %s\n", query);
|
||||
ast_debug(1, "SQL query: %s\n", query);
|
||||
|
||||
ast_mutex_lock(&mutex);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user