dect
/
asterisk
Archived
13
0
Fork 0

Make excessive debug optional

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@16903 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2006-04-01 20:39:33 +00:00
parent a06f58d488
commit 0bc4374f9b
1 changed files with 4 additions and 3 deletions

View File

@ -872,8 +872,8 @@ static int action_waitevent(struct mansession *s, struct message *m)
}
ast_mutex_unlock(&s->__lock);
s->waiting_thread = pthread_self();
ast_log(LOG_DEBUG, "Starting waiting for an event!\n");
if (option_debug)
ast_log(LOG_DEBUG, "Starting waiting for an event!\n");
for (x=0;((x<timeout) || (timeout < 0)); x++) {
ast_mutex_lock(&s->__lock);
if (s->eventq)
@ -892,7 +892,8 @@ static int action_waitevent(struct mansession *s, struct message *m)
sleep(1);
}
}
ast_log(LOG_DEBUG, "Finished waiting for an event!\n");
if (option_debug)
ast_log(LOG_DEBUG, "Finished waiting for an event!\n");
ast_mutex_lock(&s->__lock);
if (s->waiting_thread == pthread_self()) {
astman_send_response(s, m, "Success", "Waiting for Event...");