From 4b8be379de3a4fe012c29092bd1f05b8a125d8e3 Mon Sep 17 00:00:00 2001 From: Luke Strickland Date: Sat, 26 Dec 2020 17:44:35 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=99=20Add=20logging=20to=20HangUpMedia?= =?UTF-8?q?=20(#35)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We log whenever a session calls HangUpMedia, which we haven't implemented yet. This should help us nail down the source of #47 and #33 Co-authored-by: Hayden McAfee --- src/JanusFtl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/JanusFtl.cpp b/src/JanusFtl.cpp index 495fdab..2c8b9b5 100644 --- a/src/JanusFtl.cpp +++ b/src/JanusFtl.cpp @@ -233,6 +233,7 @@ void JanusFtl::DataReady(janus_plugin_session* handle) void JanusFtl::HangUpMedia(janus_plugin_session* handle) { // TODO + JANUS_LOG(LOG_WARN, "FTL: HangUpMedia called by session, but we're not handling it!\n"); } void JanusFtl::DestroySession(janus_plugin_session* handle, int* error) @@ -868,4 +869,4 @@ ConnectionResult JanusFtl::onOrchestratorStreamRelay(ConnectionRelayPayload payl } } -#pragma endregion Private methods \ No newline at end of file +#pragma endregion Private methods