aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/logger.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-12 22:11:02 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-12 22:11:02 +0000
commit89201083ba81ee8249f1d852dd00ccc154a711a4 (patch)
tree9f87789697c383f0cdbe2689d5b57fe3cead0757 /include/asterisk/logger.h
parent8efd511a7e93e18a0c1945e63d0751571c8091e1 (diff)
Add queue logging and fix indications buglet
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2159 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/logger.h')
-rwxr-xr-xinclude/asterisk/logger.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/logger.h b/include/asterisk/logger.h
index c2598b40d..e0d3f5a94 100755
--- a/include/asterisk/logger.h
+++ b/include/asterisk/logger.h
@@ -40,6 +40,9 @@ extern "C" {
extern void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...)
__attribute__ ((format (printf, 5, 6)));
+extern void ast_queue_log(const char *queuename, const char *callid, const char *agent, const char *event, const char *fmt, ...)
+ __attribute__ ((format (printf, 5, 6)));
+
//! Send a verbose message (based on verbose level)
/*!
* This works like ast_log, but prints verbose messages to the console depending on verbosity level set.