From: Raymond Chandler Date: Fri, 24 May 2013 00:51:25 +0000 (-0400) Subject: FS-4871: reduce logging a bit X-Git-Tag: v1.2.13~341 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d00ed860a179604889286c31d9c02e93905bc590;p=thirdparty%2Ffreeswitch.git FS-4871: reduce logging a bit --- diff --git a/src/switch_xml.c b/src/switch_xml.c index d59ae1fe5c..e17f16bc4f 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -2009,12 +2009,13 @@ SWITCH_DECLARE(switch_status_t) switch_xml_locate_user_merged(const char *key, c switch_time_t expires = 0; switch_time_t time_now = 0; - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "caching lookup for user %s@%s\n", user_name, domain_name); if (switch_is_number(cacheable)) { int cache_ms = atol(cacheable); - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "caching lookup for %d milliseconds\n", cache_ms); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "caching lookup for user %s@%s for %d milliseconds\n", user_name, domain_name, cache_ms); time_now = switch_micro_time_now(); expires = time_now + (cache_ms * 1000); + } else { + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "caching lookup for user %s@%s indefinitely\n", user_name, domain_name); } switch_xml_user_cache(key, user_name, domain_name, x_user_dup, expires); }