This commit is contained in:
Valere
2026-02-10 11:53:28 +01:00
parent a329ae0ad1
commit 286c88b8c0
2 changed files with 5 additions and 2 deletions

View File

@@ -224,7 +224,7 @@ export class Initializer {
this.initStep(resolve);
},
(e) => {
logger.error("Failed to load config", e);
logger.error(`Failed to load config for Element Call: ${e}`);
},
);
}

View File

@@ -154,8 +154,11 @@ export class Connection {
"[Connection " + opts.transport.livekit_service_url + "]",
);
this.logger.info(
`constructor: ${opts.transport.livekit_service_url} roomId: ${this.roomId} withSfuConfig?: ${opts.existingSFUConfig ? JSON.stringify(opts.existingSFUConfig) : "undefined"}`,
`Creating connection to ${opts.transport.livekit_service_url}, jwt auth version ${opts.forceJwtEndpoint}`,
);
// this.logger.info(
// `constructor: ${opts.transport.livekit_service_url} roomId: ${this.roomId} withSfuConfig?: ${opts.existingSFUConfig ? JSON.stringify(opts.existingSFUConfig) : "undefined"}`,
// );
const { transport, client, scope } = opts;
this.scope = scope;