Remove a debug message. If this is still needed for debugging something,

it should be made a LOG_DEBUG message.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48929 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-12-23 20:08:16 +00:00
parent 193d2932b9
commit 08cfbe97b8
1 changed files with 0 additions and 2 deletions

View File

@ -2222,8 +2222,6 @@ static void purge_sessions(int n_max)
AST_LIST_LOCK(&sessions);
AST_LIST_TRAVERSE_SAFE_BEGIN(&sessions, s, list) {
if (s->sessiontimeout && (now > s->sessiontimeout) && !s->inuse) {
ast_verbose("destroy session[2] %lx now %lu to %lu\n",
s->managerid, (unsigned long)now, (unsigned long)s->sessiontimeout);
AST_LIST_REMOVE_CURRENT(&sessions, list);
ast_atomic_fetchadd_int(&num_sessions, -1);
if (s->authenticated && (option_verbose > 1) && displayconnects) {