Skip to content

Commit

Permalink
fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Josquin Cornec committed Mar 5, 2024
1 parent 3c2c5a2 commit b00570b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {
Username(conf.Keycloak.Username),
conf.Stock.MaxChangesToAccept,
); err != nil {
logger.Error("erreur pendant la mise à jour de Keycloak", logContext, err)
logger.Error("erreur pendant la mise à jour des habilitations Keycloak", logContext, err)
}
logger.Notice("mise à jour des habilitations Keycloak", keycloakLogContext.AddString("status", "END"))
}
Expand All @@ -76,7 +76,7 @@ func main() {
conf.Wekan.SlugDomainRegexp,
)
if err != nil {
logger.Error("erreur pendant la mise à jour de Keycloak", logContext, err)
logger.Error("erreur pendant la mise à jour des habilitations Wekan", logContext, err)
}
logger.Notice("mise à jour des habilitations Wekan", wekanLogContext.AddString("status", "END"))
}
Expand Down

0 comments on commit b00570b

Please sign in to comment.