From 137d097de4e4aea900d952d54aa3d98a7a5f91e8 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Tue, 1 Feb 2022 10:06:11 +0100 Subject: [PATCH] add changelog --- .vscode/launch.json | 6 +++--- changelog/unreleased/change-default-log-level.md | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 changelog/unreleased/change-default-log-level.md diff --git a/.vscode/launch.json b/.vscode/launch.json index 94312a3e14..bf817de718 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,9 +12,9 @@ ], "env": { // log settings for human developers - "OCIS_LOG_LEVEL": "debug", - "OCIS_LOG_PRETTY": "true", - "OCIS_LOG_COLOR": "true", + //"OCIS_LOG_LEVEL": "debug", + //"OCIS_LOG_PRETTY": "true", + //"OCIS_LOG_COLOR": "true", // enable basic auth for dev setup so that we can use curl for testing "PROXY_ENABLE_BASIC_AUTH": "true", // set insecure options because we don't have valid certificates in dev environments diff --git a/changelog/unreleased/change-default-log-level.md b/changelog/unreleased/change-default-log-level.md new file mode 100644 index 0000000000..dd177d5dc9 --- /dev/null +++ b/changelog/unreleased/change-default-log-level.md @@ -0,0 +1,5 @@ +Change: change log level default from debug to error + +We've changed the default log level for all services from "default" to "error". + +https://github.com/owncloud/ocis/pull/3071