Fix logged application name
This commit is contained in:
parent
269339ced4
commit
4339baee85
2 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
### Fixed
|
||||||
|
- fix logged application name
|
||||||
|
|
||||||
## [0.1.0] - 2023-07-29
|
## [0.1.0] - 2023-07-29
|
||||||
### Changed
|
### Changed
|
||||||
- initial release
|
- initial release
|
||||||
|
|
|
@ -84,7 +84,7 @@ func main() {
|
||||||
|
|
||||||
logger.WithFields(log.Fields{
|
logger.WithFields(log.Fields{
|
||||||
"version": version, "commit": commit, "date": date,
|
"version": version, "commit": commit, "date": date,
|
||||||
}).Info("Starting CAcert OpenID Connect Identity Provider")
|
}).Info("Starting CAcert OpenID Connect demo application")
|
||||||
logger.Infoln("Server is starting")
|
logger.Infoln("Server is starting")
|
||||||
|
|
||||||
bundle, catalog := services.InitI18n(logger, config.Strings("i18n.languages"))
|
bundle, catalog := services.InitI18n(logger, config.Strings("i18n.languages"))
|
||||||
|
|
Loading…
Reference in a new issue