From d2a4b832f2044f18f5b034d1b19bceddacf6f518 Mon Sep 17 00:00:00 2001 From: Miguel Duarte Barroso Date: Mon, 6 Jun 2022 15:33:05 +0200 Subject: [PATCH] config, logging: correct the logging parameters (#856) The logging parameters were listing using uppercase, which is wrong. According to multus configuration, they should be in camelCase - [0] and [1]. [0] - https://github.com/k8snetworkplumbingwg/multus-cni/blob/779170a48ea767fe367f58ca472a8c403c203c6f/pkg/types/types.go#L45 [1] - https://github.com/k8snetworkplumbingwg/multus-cni/blob/779170a48ea767fe367f58ca472a8c403c203c6f/pkg/types/types.go#L46 --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 5106a0cd5..050339a49 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -110,7 +110,7 @@ Optionally, you may have Multus log to a file on the filesystem. This file will For example in your CNI configuration, you may set: ``` - "LogFile": "/var/log/multus.log", + "logFile": "/var/log/multus.log", ``` #### Logging Level @@ -127,7 +127,7 @@ The available logging level values, in decreasing order of verbosity are: You may configure the logging level by using the `LogLevel` option in your CNI configuration. For example: ``` - "LogLevel": "debug", + "logLevel": "debug", ``` #### Logging Options