From 895b09b67c50621e23ed9210872409fb1a0e32a2 Mon Sep 17 00:00:00 2001 From: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> Date: Mon, 24 Aug 2026 16:26:36 +0530 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20typo:=20Possible=20typo=20in=20docum?= =?UTF-8?q?entation:=20=E2=80=98loggin=E2=80=99=20should=20be=20=E2=80=98l?= =?UTF-8?q?ogging=E2=80=99=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - docs\modules\ROOT\pages\spring-cloud-commons\application-context-services.adoc: 'loggin'->'logging' Fixes #1544 Signed-off-by: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> --- COMMITMSG | 7 +++++++ .../application-context-services.adoc | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 COMMITMSG diff --git a/COMMITMSG b/COMMITMSG new file mode 100644 index 000000000..f4d1e15ad --- /dev/null +++ b/COMMITMSG @@ -0,0 +1,7 @@ +fix: typo: Possible typo in documentation: ‘loggin’ should be ‘logging’” + +- docs\modules\ROOT\pages\spring-cloud-commons\application-context-services.adoc: 'loggin'->'logging' + +Fixes #1544 + +Signed-off-by: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> diff --git a/docs/modules/ROOT/pages/spring-cloud-commons/application-context-services.adoc b/docs/modules/ROOT/pages/spring-cloud-commons/application-context-services.adoc index 8677999cb..396920eab 100644 --- a/docs/modules/ROOT/pages/spring-cloud-commons/application-context-services.adoc +++ b/docs/modules/ROOT/pages/spring-cloud-commons/application-context-services.adoc @@ -144,13 +144,13 @@ activate profiles using `spring.profiles.active`. After the main application co will be called a second time, this time with any active profiles allowing `PropertySourceLocators` to locate any additional `PropertySources` with profiles. -[[logging-configuration]] +[[loggingg-configuration]] == Logging Configuration If you use Spring Boot to configure log settings, you should place this configuration in `bootstrap.[yml | properties]` if you would like it to apply to all events. -NOTE: For Spring Cloud to initialize logging configuration properly, you cannot use a custom prefix. -For example, using `custom.logging.logpath` is not recognized by Spring Cloud when initializing the logging system. +NOTE: For Spring Cloud to initialize loggingg configuration properly, you cannot use a custom prefix. +For example, using `custom.loggingg.logpath` is not recognized by Spring Cloud when initializing the loggingg system. [[environment-changes]] == Environment Changes @@ -159,7 +159,7 @@ The application listens for an `EnvironmentChangeEvent` and reacts to the change When an `EnvironmentChangeEvent` is observed, it has a list of key values that have changed, and the application uses those to: * Re-bind any `@ConfigurationProperties` beans in the context. -* Set the logger levels for any properties in `logging.level.*`. +* Set the logger levels for any properties in `loggingg.level.*`. Note that the Spring Cloud Config Client does not, by default, poll for changes in the `Environment`. Generally, we would not recommend that approach for detecting changes (although you can set it up with a From 9937b6606088115763d86a3f99bb66ccddb97409 Mon Sep 17 00:00:00 2001 From: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> Date: Mon, 24 Aug 2026 16:42:37 +0530 Subject: [PATCH 2/2] chore: remove accidental COMMITMSG from PR Signed-off-by: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> --- COMMITMSG | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 COMMITMSG diff --git a/COMMITMSG b/COMMITMSG deleted file mode 100644 index f4d1e15ad..000000000 --- a/COMMITMSG +++ /dev/null @@ -1,7 +0,0 @@ -fix: typo: Possible typo in documentation: ‘loggin’ should be ‘logging’” - -- docs\modules\ROOT\pages\spring-cloud-commons\application-context-services.adoc: 'loggin'->'logging' - -Fixes #1544 - -Signed-off-by: Vedant Madane <6527493+VedantMadane@users.noreply.github.com>