We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5caa2c0 commit d613c5fCopy full SHA for d613c5f
src/gui/src/services/ExecService.js
@@ -14,6 +14,10 @@ export class ExecService extends Service {
14
svc_ipc.register_ipc_handler('connectToInstance', {
15
handler: this.connectToInstance.bind(this),
16
});
17
+
18
+ this.log = puter.log.fields({
19
+ category: 'ipc'
20
+ });
21
}
22
23
// This method is exposed to apps via IPCService.
@@ -30,6 +34,8 @@ export class ExecService extends Service {
30
34
target: child_instance_id,
31
35
}) : undefined;
32
36
37
+ this.log.info('launchApp connection', connection);
38
33
39
// The "body" of this method is in a separate file
40
const child_process = await launch_app({
41
launched_by_exec_service: true,
0 commit comments