fix shadow log in service accounts (#67643)

* fix shadow log in service accounts
This commit is contained in:
Jo 2023-05-02 13:57:46 +02:00 committed by GitHub
parent fd2c7594cf
commit f9fd15c01e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,10 +58,9 @@ func ProvideServiceAccountsService(
userService,
orgService,
)
log := log.New("serviceaccounts")
s := &ServiceAccountsService{
store: serviceAccountsStore,
log: log,
log: log.New("serviceaccounts"),
backgroundLog: log.New("serviceaccounts.background"),
}