Fix logged application name

This commit is contained in:
Jan Dittberner 2023-07-29 20:23:55 +02:00
parent 269339ced4
commit 4339baee85
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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"))