aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-05 17:22:19 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-05 17:22:19 +0000
commit7813e3059c7081becf74c9e29de5a16f50b7108d (patch)
tree50eece89cc825f987b938fb5bbeaa14d3d1cdc84
parent61ca316f97475c17c2604678306eeccecb43ae47 (diff)
Merged revisions 237699 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r237699 | russell | 2010-01-05 11:16:01 -0600 (Tue, 05 Jan 2010) | 14 lines Merged revisions 237697 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r237697 | russell | 2010-01-05 11:13:28 -0600 (Tue, 05 Jan 2010) | 7 lines Change a NOTICE log message to DEBUG where it belongs. (closes issue #16479) Reported by: alexrecarey (closes SWP-577) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@237724 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/utils.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/main/utils.c b/main/utils.c
index 6204423f7..89ea3c749 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -1071,7 +1071,9 @@ static int ast_wait_for_output(int fd, int timeoutms)
while ((res = ast_poll(&pfd, 1, timeoutms - elapsed)) <= 0) {
if (res == 0) {
/* timed out. */
- ast_log(LOG_NOTICE, "Timed out trying to write\n");
+#ifndef STANDALONE
+ ast_debug(1, "Timed out trying to write\n");
+#endif
return -1;
} else if (res == -1) {
/* poll() returned an error, check to see if it was fatal */