diff --git a/apps/server/src/app.ts b/apps/server/src/app.ts index 1c9591169..5dda9aa1e 100644 --- a/apps/server/src/app.ts +++ b/apps/server/src/app.ts @@ -235,6 +235,8 @@ export const startIntegrations = async () => { const { enabledOscIn, oscPortIn } = getDataProvider().getAutomation(); if (enabledOscIn) { oscServer.init(oscPortIn); + } else { + logger.info(LogOrigin.Server, 'Skipping OSC integration'); } };