commit 27d0a49f8248b13b6c9833ea4d0e0b91e43e7c14
parent 59897b604278b68705031a6eb989ffad28b6c336
Author: Andreas Pehrson <apehrson@mozilla.com>
Date: Fri, 5 Dec 2025 11:12:18 +0000
Bug 1931210 - Log SCK startCaptureWithCompletionHandler error code. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D268351
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/third_party/libwebrtc/modules/desktop_capture/mac/screen_capturer_sck.mm b/third_party/libwebrtc/modules/desktop_capture/mac/screen_capturer_sck.mm
@@ -590,7 +590,8 @@ void ScreenCapturerSck::StartWithFilter(SCContentFilter* __strong filter) {
// this handler.
permanent_error_ = true;
RTC_LOG(LS_ERROR) << "ScreenCapturerSck " << this
- << " Starting failed.";
+ << " Starting failed with error code " << error.code
+ << ".";
} else {
RTC_LOG(LS_INFO) << "ScreenCapturerSck " << this << " Capture started.";
}