Skip to content

Commit

Permalink
config, logging: correct the logging parameters (#856)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
maiqueb authored Jun 6, 2022
1 parent 779170a commit d2a4b83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit d2a4b83

Please sign in to comment.