From 001b13103bf3434cf11400373902fbeae252b1e0 Mon Sep 17 00:00:00 2001 From: pknellore Date: Mon, 16 Jun 2025 10:49:29 -0400 Subject: [PATCH] Remove redundant warning log The warning log in publishFrame was being printed unconditionally due to the absence of a return statement after a successful frame publish. Change-Id: I552276e37071cb24a7b16b4b8ae441ebd26379b6 --- src/client/videomanager.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/videomanager.cpp b/src/client/videomanager.cpp index 4b638cb74..324095c4b 100644 --- a/src/client/videomanager.cpp +++ b/src/client/videomanager.cpp @@ -371,7 +371,6 @@ publishFrame(std::string_view id) if (auto vm = jami::Manager::instance().getVideoManager()) if (auto input = vm->getVideoInput(id)) input->publishFrame(); - JAMI_WARNING("publishFrame: Unable to find input {}", id); } void