Skip to content

Commit 8d3c390

Browse files
committed
profiler: add startgst
1 parent 6ea7aeb commit 8d3c390

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

packages/core/src/profiling.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,21 @@ function stopProfiler(): void {
6868
integration._profiler.stop();
6969
}
7070

71+
/**
72+
* Starts a new profiler session.
73+
*/
74+
function startProfilerSession(): void {
75+
}
76+
77+
/**
78+
* Stops the current profiler session.
79+
*/
80+
function stopProfilerSession(): void {
81+
}
82+
7183
export const profiler: Profiler = {
7284
startProfiler,
7385
stopProfiler,
86+
startProfilerSession,
87+
stopProfilerSession,
7488
};

0 commit comments

Comments
 (0)