Less warning messages when first running it.

They are actually `info` messages
This commit is contained in:
Deluan 2021-06-13 19:27:01 -04:00
parent 59b99d2206
commit 667701be02
2 changed files with 8 additions and 3 deletions

View file

@ -20,7 +20,7 @@ func initialSetup(ds model.DataStore) {
if err == nil {
return nil
}
log.Warn("Running initial setup")
log.Info("Running initial setup")
if err = createJWTSecret(ds); err != nil {
return err
}
@ -68,7 +68,7 @@ func createJWTSecret(ds model.DataStore) error {
if err == nil {
return nil
}
log.Warn("Creating JWT secret, used for encrypting UI sessions")
log.Info("Creating new JWT secret, used for encrypting UI sessions")
err = properties.Put(consts.JWTSecretKey, uuid.NewString())
if err != nil {
log.Error("Could not save JWT secret in DB", err)