mirror of
https://github.com/status-im/react-native.git
synced 2025-01-28 02:04:55 +00:00
65f22a5190
Reviewed By: javache Differential Revision: D5010638 fbshipit-source-id: 2e139201a8374245fa1dedc4f11a716dcf700fd7
27 lines
423 B
C++
27 lines
423 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include "Platform.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
namespace ReactMarker {
|
|
LogTaggedMarker logTaggedMarker;
|
|
|
|
void logMarker(const ReactMarkerId markerId) {
|
|
logTaggedMarker(markerId, nullptr);
|
|
}
|
|
|
|
};
|
|
|
|
namespace PerfLogging {
|
|
InstallNativeHooks installNativeHooks;
|
|
};
|
|
|
|
namespace JSNativeHooks {
|
|
Hook loggingHook = nullptr;
|
|
Hook nowHook = nullptr;
|
|
}
|
|
|
|
} }
|