diff --git a/changelog.md b/changelog.md index d9bd4f2..0d632d6 100644 --- a/changelog.md +++ b/changelog.md @@ -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/), 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 ### Changed - initial release diff --git a/cmd/app/main.go b/cmd/app/main.go index 58cd3e9..069a061 100644 --- a/cmd/app/main.go +++ b/cmd/app/main.go @@ -84,7 +84,7 @@ func main() { logger.WithFields(log.Fields{ "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") bundle, catalog := services.InitI18n(logger, config.Strings("i18n.languages"))