chore: fix typo

This commit is contained in:
Stavros
2025-11-15 11:53:04 +02:00
parent 8894064e10
commit 259069193f
5 changed files with 10 additions and 10 deletions

View File

@@ -49,7 +49,7 @@ func NewBootstrapApp(config config.Config) *BootstrapApp {
func (app *BootstrapApp) Setup() error {
// Log json
shoudLogJson := utils.ShoudLogJSON(os.Environ(), os.Args)
shouldLogJson := utils.ShouldLogJSON(os.Environ(), os.Args)
// Parse users
users, err := utils.GetUsers(app.config.Users, app.config.UsersFile)
@@ -147,7 +147,7 @@ func (app *BootstrapApp) Setup() error {
oauthBrokerService := service.NewOAuthBrokerService(oauthProviders)
accessLogService := service.NewAccessLogService(&service.AccessLogServiceConfig{
LogFile: app.config.AccessLogFile,
LogJson: shoudLogJson,
LogJson: shouldLogJson,
})
// Initialize services (order matters)