minor log rewording from "received" to "sent" (#49870)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49870

Changelog:
[General][Internal] minor log rewording from "received" to "sent"

Reviewed By: huntie

Differential Revision: D70707308

fbshipit-source-id: 8a28b093ebc3dd374e98cfad23996982a48bab8d
This commit is contained in:
Vitali Zaidman
2025-03-07 02:31:54 -08:00
committed by Facebook GitHub Bot
parent 1a9adfba16
commit edf95eb6fa
@@ -74,9 +74,10 @@ export default class CDPMessagesLogging {
if (timeout == null) {
timeout = setTimeout<$ReadOnlyArray<CDPMessageDestination>>(() => {
debug(
'%s %s CDP messages received in the last %ss.',
'%s %s CDP messages %s in the last %ss.',
getCDPLogPrefix(destination),
String(batchingCounters[destination]).padStart(5),
destination.startsWith('Proxy') ? ' sent ' : 'received',
CDP_MESSAGES_BATCH_DEBUGGING_THROTTLE_MS / 1000,
);
batchingCounters[destination] = 0;