From aadfa1e6e18f23aed2f4d7fbdfd9b50a5e0ae6d2 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Sun, 11 Apr 2021 12:56:40 -0400 Subject: [PATCH] Remove warning on fail to Prime. zmc will log it --- src/zm_libvnc_camera.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/zm_libvnc_camera.cpp b/src/zm_libvnc_camera.cpp index ea3ed57a8..f108bcb86 100644 --- a/src/zm_libvnc_camera.cpp +++ b/src/zm_libvnc_camera.cpp @@ -181,7 +181,6 @@ int VncCamera::PrimeCapture() { } if (!(*rfbInitClient_f)(mRfb, 0, nullptr)) { /* IF rfbInitClient fails, it calls rdbClientCleanup which will free mRfb */ - Warning("Failed to Prime capture from %s", mHost.c_str()); mRfb = nullptr; return -1; }