Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ void UIManagerBinding::dispatchEventToJS(
: jsi::Value::null();

if (instanceHandle.isNull()) {
LOG(WARNING) << "instanceHandle is null, event will be dropped";
// Do not log all missing instanceHandles to avoid log spam
LOG_EVERY_N(INFO, 10) << "instanceHandle is null, event of type " << type
<< " will be dropped";
}

currentEventPriority_ = priority;
Expand Down