We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae03713 commit a254191Copy full SHA for a254191
packages/core/src/native_core/index.ts
@@ -1,4 +1,5 @@
1
import path from "path";
2
+import { logDebug } from "../utils";
3
import { InstrumentHooks } from "./instruments/hooks";
4
import { LinuxPerf } from "./linux_perf/linux_perf";
5
interface NativeCore {
@@ -21,6 +22,8 @@ try {
21
22
isBound: true,
23
};
24
} catch (e) {
25
+ logDebug("Failed to bind native core, instruments will not work.");
26
+ logDebug(e);
27
native_core = {
28
LinuxPerf: class LinuxPerf {
29
start() {
0 commit comments