Skip to content

Commit b434358

Browse files
committed
test log
1 parent d239f13 commit b434358

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/node/src/integrations/localvariables.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class AsyncSession implements DebugSession {
7979
private _getProperties(objectId: string): Promise<Runtime.PropertyDescriptor[]> {
8080
return new Promise((resolve, reject) => {
8181
if (!this._session) {
82+
// eslint-disable-next-line no-console
83+
console.error('Session is not available');
8284
reject(new Error('Session is not available'));
8385
return;
8486
}
@@ -205,7 +207,7 @@ export class LocalVariables implements Integration {
205207
public constructor(
206208
private readonly _options: Options = {},
207209
private readonly _session: DebugSession | undefined = tryNewAsyncSession(),
208-
) { }
210+
) {}
209211

210212
/**
211213
* @inheritDoc

0 commit comments

Comments
 (0)