summaryrefslogtreecommitdiff
path: root/main/tcptls.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-09-14 12:54:40 +0000
committerJoshua Colp <jcolp@digium.com>2017-09-14 12:54:40 +0000
commit7fa11842d8b886b7c9b9616c977024a86144390a (patch)
tree6342290b3c722a8d08a5a37178adb0184b8bc527 /main/tcptls.c
parent58f6d0320ebff76ddfee0c82ea8bfc8018b1a4bc (diff)
tcptls: Change error message to debug.
The Websocket implementation will steal the underlying stream of TCP/TLS sessions. This results in an error message being output about a stream not being present when in reality this is actually fine. This change moves it to a debug message instead. Change-Id: I66cc639080b4b4599beadb4faa7d313f2721d094
Diffstat (limited to 'main/tcptls.c')
-rw-r--r--main/tcptls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tcptls.c b/main/tcptls.c
index 85859a343..ebe86f3e0 100644
--- a/main/tcptls.c
+++ b/main/tcptls.c
@@ -777,7 +777,7 @@ void ast_tcptls_close_session_file(struct ast_tcptls_session_instance *tcptls_se
ast_iostream_close(tcptls_session->stream);
tcptls_session->stream = NULL;
} else {
- ast_log(LOG_ERROR, "ast_tcptls_close_session_file invoked on session instance without file or file descriptor\n");
+ ast_debug(1, "ast_tcptls_close_session_file invoked on session instance without file or file descriptor\n");
}
}