From: Brian West Date: Wed, 25 Oct 2017 18:11:19 +0000 (-0500) Subject: FS-10751: [mod_av] Add parsing for TRACE log level in AV X-Git-Tag: v1.8.0~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=330066113764090e872c221792607522bfadb5f4;p=thirdparty%2Ffreeswitch.git FS-10751: [mod_av] Add parsing for TRACE log level in AV --- diff --git a/src/mod/applications/mod_av/mod_av.c b/src/mod/applications/mod_av/mod_av.c index 242541c3a1..fcf4e54af6 100644 --- a/src/mod/applications/mod_av/mod_av.c +++ b/src/mod/applications/mod_av/mod_av.c @@ -93,6 +93,10 @@ int mod_av_lockmgr_cb(void **m, enum AVLockOp op) return 0; } +#ifndef AV_LOG_TRACE +#define AV_LOG_TRACE 96 +#endif + static void log_callback(void *ptr, int level, const char *fmt, va_list vl) { switch_log_level_t switch_level = SWITCH_LOG_DEBUG;