app(logger): restore the old behaviour
All checks were successful
continuous-integration/drone/push Build is passing

that is - have the Logger() method return pointer to the local (s)logger
This commit is contained in:
leo 2023-05-11 04:42:38 +02:00
parent 355f09bf5a
commit bef3cb228e
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -84,7 +84,7 @@ func (a *App) E() *echo.Echo {
// Logger returns app's pointer to the global logger instance.
func (a *App) Logger() *slogging.Logger {
return a.slogger
return &a.logger
}
// PrintConfiguration outputs relevant settings of the application to console.