From 942fd697763bb4145e24f64dbffeb5baa1c36b82 Mon Sep 17 00:00:00 2001 From: James Elliott Date: Tue, 3 Aug 2021 10:44:21 +1000 Subject: [PATCH] docs(logging): fix invalid key log_file (#2226) A small fix to the documentation regarding migrating configuration. --- docs/configuration/migration.md | 18 +++++++++--------- .../schema/{logging.go => log.go} | 0 2 files changed, 9 insertions(+), 9 deletions(-) rename internal/configuration/schema/{logging.go => log.go} (100%) diff --git a/docs/configuration/migration.md b/docs/configuration/migration.md index 2f259cb0c..942128cd5 100644 --- a/docs/configuration/migration.md +++ b/docs/configuration/migration.md @@ -32,15 +32,15 @@ in version 4.30.0, it will remain as a warning for 4.30.x, 4.31.x, and 4.32.x; t The following changes occurred in 4.30.0: -|Previous Key|New Key | -|:----------:|:--------------------:| -|host |server.host | -|port |server.port | -|tls_key |server.tls.key | -|tls_cert |server.tls.certificate| -|log_level |log.level | -|log_file |log.file | -|log_format |log.format | +|Previous Key |New Key | +|:-----------:|:--------------------:| +|host |server.host | +|port |server.port | +|tls_key |server.tls.key | +|tls_cert |server.tls.certificate| +|log_level |log.level | +|log_file_path|log.file_path | +|log_format |log.format | ### 4.25.0 diff --git a/internal/configuration/schema/logging.go b/internal/configuration/schema/log.go similarity index 100% rename from internal/configuration/schema/logging.go rename to internal/configuration/schema/log.go