Skip to content

Commit 2237006

Browse files
committed
debug logs
1 parent 72d59cb commit 2237006

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/server/src/workspace/gitpod-server-impl.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,12 @@ export class GitpodServerImpl implements GitpodServerWithTracing, Disposable {
312312
this.listenForWorkspaceInstanceUpdates();
313313

314314
this.listenForPrebuildUpdates().catch((err) => log.error("error registering for prebuild updates", err));
315+
console.log(`GITPOD-SERVER initialized ${this.uuid}`);
316+
this.disposables.push(
317+
Disposable.create(() => {
318+
console.log(`GITPOD-SERVER disposed ${this.uuid}`);
319+
}),
320+
);
315321
}
316322

317323
private async listenForPrebuildUpdates() {

0 commit comments

Comments
 (0)