From a3b39bdb80994746d5d85c11920e93ab8abaa925 Mon Sep 17 00:00:00 2001 From: Ben Hardill Date: Fri, 26 Jul 2024 13:10:07 +0100 Subject: [PATCH] Fix LOG_PASSTHROUGH Raised on the Node-RED forum --- docker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.js b/docker.js index 67fb293..1ac1ab9 100644 --- a/docker.js +++ b/docker.js @@ -84,7 +84,7 @@ const createContainer = async (project, domain) => { contOptions.Env.push(`FORGE_NR_SECRET=${credentialSecret}`) } - if (this._options?.logPassthrough) { + if (this._app.driver.options?.logPassthrough) { contOptions.Env.push('FORGE_LOG_PASSTHROUGH=true') }