From 525d0e572a520fe5c813f99c68ee62b351f98024 Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Tue, 3 Dec 2024 14:12:52 -0700 Subject: [PATCH] Update logging env vars in base.dockerfile --- util/docker/base.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/docker/base.dockerfile b/util/docker/base.dockerfile index df733ea..86e5742 100644 --- a/util/docker/base.dockerfile +++ b/util/docker/base.dockerfile @@ -20,8 +20,8 @@ ENV ROOTPATH=/hdb ENV OPERATIONSAPI_NETWORK_PORT=9925 ENV HTTP_PORT=9926 ENV THREADS_COUNT=1 -ENV LOG_TO_STDSTREAMS=true -ENV LOG_TO_FILE=true +ENV LOGGING_STDSTREAMS=true +ENV LOGGING_LEVEL=debug # Create components directory RUN mkdir -p /hdb/components @@ -41,4 +41,4 @@ COPY config.yaml extension.js cli.js package.json /@harperdb/nextjs/ RUN npm install -C /@harperdb/nextjs # Create link to the @harperdb/nextjs module -RUN npm link -C /@harperdb/nextjs \ No newline at end of file +RUN npm link -C /@harperdb/nextjs