diff --git a/system/Session/Session.php b/system/Session/Session.php index 0aabcbe31d53..b522f63af5f2 100644 --- a/system/Session/Session.php +++ b/system/Session/Session.php @@ -258,7 +258,7 @@ public function start() } $this->initVars(); - $this->logger->info("Session: Class initialized using '" . $this->config->driver . "' driver."); + $this->logger->debug("Session: Class initialized using '" . $this->config->driver . "' driver."); return $this; } diff --git a/user_guide_src/source/changelogs/v4.5.6.rst b/user_guide_src/source/changelogs/v4.5.6.rst index 33e3e5a1a0ab..e454409fc6a8 100644 --- a/user_guide_src/source/changelogs/v4.5.6.rst +++ b/user_guide_src/source/changelogs/v4.5.6.rst @@ -29,6 +29,7 @@ Deprecations ********** Bugs Fixed ********** +- **Session Library:** The session initialization debug message now uses the correct log type "debug" instead of "info". See the repo's `CHANGELOG.md `_