From d03ce5408d8ad179a8a0b11832fddc6c734b681f Mon Sep 17 00:00:00 2001 From: gxz Date: Wed, 26 Feb 2025 19:44:31 +0800 Subject: [PATCH] chore: optimize --- ios/AgoraRtcSurfaceView.mm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ios/AgoraRtcSurfaceView.mm b/ios/AgoraRtcSurfaceView.mm index 4fde0cde..bd229542 100644 --- a/ios/AgoraRtcSurfaceView.mm +++ b/ios/AgoraRtcSurfaceView.mm @@ -48,11 +48,6 @@ - (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const & const auto &oldViewProps = *std::static_pointer_cast(_props); const auto &newViewProps = *std::static_pointer_cast(props); - // Add NSLog to print oldViewProps and newViewProps - NSLog(@"oldViewProps: funcName = %s, params = %s", oldViewProps.callApi.funcName.c_str(), oldViewProps.callApi.params.c_str()); - NSLog(@"newViewProps: funcName = %s, params = %s", newViewProps.callApi.funcName.c_str(), newViewProps.callApi.params.c_str()); - NSLog(@"_isInitialized: _isInitialized = %d", _isInitialized); - if (_isDestroyed) { _isInitialized = NO; _isDestroyed = NO;