From 5c51abbd46f850ce22ac03f7ac207b7ad62dadd6 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Fri, 23 May 2025 10:53:09 +0000 Subject: [PATCH] chore: log IP in stream request --- src/controller/StreamController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/StreamController.ts b/src/controller/StreamController.ts index 5844254..298f124 100644 --- a/src/controller/StreamController.ts +++ b/src/controller/StreamController.ts @@ -32,7 +32,7 @@ export class StreamController { config, }; - this.logger.info(`Search stream for type "${type}" and id "${id}"`, ctx); + this.logger.info(`Search stream for type "${type}" and id "${id}" for ip ${ctx.ip}`, ctx); const handlers = this.handlers.filter(handler => handler.languages.filter(language => language in ctx.config).length);