Skip to content

Commit

Permalink
Merge 3014cfb into backport/reject-redundant-unused-keys-in-config/ra…
Browse files Browse the repository at this point in the history
…tionally-leading-dassie
  • Loading branch information
hc-github-team-secure-vault-core committed Apr 1, 2022
2 parents c9954ee + 3014cfb commit a67e44b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions command/server.go
Expand Up @@ -460,7 +460,7 @@ func (c *ServerCommand) runRecoveryMode() int {

// reporting Errors found in the config
for _, cErr := range configErrors {
c.logger.Error(cErr.String())
c.logger.Warn(cErr.String())
}

// Ensure logging is flushed if initialization fails
Expand Down Expand Up @@ -1117,7 +1117,7 @@ func (c *ServerCommand) Run(args []string) int {

// reporting Errors found in the config
for _, cErr := range configErrors {
c.logger.Error(cErr.String())
c.logger.Warn(cErr.String())
}

// Ensure logging is flushed if initialization fails
Expand Down Expand Up @@ -1553,7 +1553,7 @@ func (c *ServerCommand) Run(args []string) int {

// reporting Errors found in the config
for _, cErr := range configErrors {
c.logger.Error(cErr.String())
c.logger.Warn(cErr.String())
}

core.SetConfig(config)
Expand Down

0 comments on commit a67e44b

Please sign in to comment.