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 e2eab27 commit acb3056Copy full SHA for acb3056
src/interceptors/terminal/fresh-terminal-interceptor.ts
@@ -35,7 +35,10 @@ const getTerminalCommand = _.memoize(async (): Promise<SpawnArgs | null> => {
35
else result = Promise.resolve(null);
36
37
result.then((terminal) => {
38
- if (terminal) addBreadcrumb('Found terminal', { data: { terminal } });
+ if (terminal) {
39
+ console.log(`Detected terminal command: ${terminal.command}`);
40
+ addBreadcrumb('Found terminal', { data: { terminal } });
41
+ }
42
else logError('No terminal could be detected');
43
});
44
0 commit comments