We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3655d7e commit 89ea833Copy full SHA for 89ea833
packages/core/src/index.ts
@@ -1,6 +1,7 @@
1
import { checkV8Flags } from "./introspection";
2
import { MongoMeasurement } from "./mongoMeasurement";
3
import native_core from "./native_core";
4
+import { logDebug } from "./utils";
5
6
declare const __VERSION__: string;
7
@@ -33,6 +34,7 @@ export function getCodspeedRunnerMode(): CodSpeedRunnerMode {
33
34
}
35
36
export const setupCore = () => {
37
+ logDebug(`Native core is ${native_core.isBound ? "bound" : "not bound"}`);
38
native_core.InstrumentHooks.setIntegration("codspeed-node", __VERSION__);
39
linuxPerf.start();
40
checkV8Flags();
0 commit comments