feat: WithLogger Provider Option (#833)

v3
Vianney Foucault 2024-10-19 23:06:59 +02:00 committed by GitHub
parent a02d852a1c
commit 1e26652add
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -165,6 +165,16 @@ func WithDisableVersioning(b bool) ProviderOption {
})
}
// WithLogger set the logger, same behavior as with goose.SetLogger(logger)
// Using Provider would block the ability to override the logger, which could become painful to have a proper
// structured logging. By Default, this won't override the default logger.
func WithLogger(l Logger) ProviderOption {
return configFunc(func(c *config) error {
c.logger = l
return nil
})
}
type config struct {
store database.Store