We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3302809 commit ed6cd2bCopy full SHA for ed6cd2b
1 file changed
packages/react-native-executorch-webrtc/android/src/main/cpp/FrameProcessorBridge.cpp
@@ -82,11 +82,11 @@ Java_com_executorch_webrtc_ExecutorchFrameProcessor_loadModel(
82
g_resizedRgb = cv::Mat(g_modelHeight, g_modelWidth, CV_8UC3);
83
84
g_modelLoaded = true;
85
- LOGD("✅ Segmentation model loaded successfully via "
+ LOGD("Segmentation model loaded successfully via "
86
"BaseSemanticSegmentation!");
87
return JNI_TRUE;
88
} catch (const std::exception &e) {
89
- LOGE("❌ Failed to load model: %s", e.what());
+ LOGE("Failed to load model: %s", e.what());
90
g_modelLoaded = false;
91
g_segmentation.reset();
92
return JNI_FALSE;
0 commit comments