Skip to content

Commit d613c5f

Browse files
committed
log: when app is launched
1 parent 5caa2c0 commit d613c5f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/gui/src/services/ExecService.js

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ export class ExecService extends Service {
1414
svc_ipc.register_ipc_handler('connectToInstance', {
1515
handler: this.connectToInstance.bind(this),
1616
});
17+
18+
this.log = puter.log.fields({
19+
category: 'ipc'
20+
});
1721
}
1822

1923
// This method is exposed to apps via IPCService.
@@ -30,6 +34,8 @@ export class ExecService extends Service {
3034
target: child_instance_id,
3135
}) : undefined;
3236

37+
this.log.info('launchApp connection', connection);
38+
3339
// The "body" of this method is in a separate file
3440
const child_process = await launch_app({
3541
launched_by_exec_service: true,

0 commit comments

Comments
 (0)