Ben Nham 65f22a5190 log script name with bundle loading perf event
Reviewed By: javache

Differential Revision: D5010638

fbshipit-source-id: 2e139201a8374245fa1dedc4f11a716dcf700fd7
2017-05-10 04:09:19 -07:00

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;
}
} }