All Versions
17
Latest Version
Avg Release Cycle
194 days
Latest Release
265 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v8.4.0 Changes
December 23, 2025Minor Changes
- #333
4916581Thanks @theogravity! -clearContext()now accepts an optional parameter to clear specific context keys instead of all context data.
Patch Changes
- ⚡️ Updated dependencies [
4916581]:- @loglayer/context-manager@1.2.0
- @loglayer/shared@3.3.0
- @loglayer/log-level-manager@1.0.5
- @loglayer/plugin@2.2.7
- @loglayer/transport@2.3.13
- #333
-
v3.0.13 Changes
December 23, 2025Patch Changes
- ⚡️ Updated dependencies []:
- @loglayer/transport@2.3.13
- ⚡️ Updated dependencies []:
-
v2.3.13 Changes
December 23, 2025Patch Changes
- ⚡️ Updated dependencies [
4916581]:- @loglayer/shared@3.3.0
- ⚡️ Updated dependencies [
-
v2.3.1 Changes
December 23, 2025Patch Changes
- ⚡️ Updated dependencies []:
- @loglayer/transport@2.3.13
- ⚡️ Updated dependencies []:
-
v2.1.16 Changes
December 23, 2025Patch Changes
- ⚡️ Updated dependencies []:
- @loglayer/transport@2.3.13
- ⚡️ Updated dependencies []:
-
v1.4.2 Changes
November 02, 2022Contributor: Theo Gravity
- 🛠 Fix issue where
LogLayer#child()was not creating a shallow copy of context (#10)
📚 The documentation says the context should be shallow copied, but it wasn't. Now it is.
- 🛠 Fix issue where
-
v1.4.1 Changes
November 02, 2022Contributor: Theo Gravity
- ➕ Add support for creating child loggers (#9)
🔧 This adds a new method called
LogLayer#child()that will create a new LogLayer instance with the original configuration and context data copied over. -
v1.3.4 Changes
August 22, 2022Contributor: Theo Gravity
- ➕ Add consoleDebug option (#7)
-
v1.3.3 Changes
August 10, 2022Contributor: Theo Gravity
- ➕ Add config option and methods to disable / enable logging (#6)
🌲 This adds an optional config option called
enabled, when set tofalse, will stop log output.Corresponding methods
enableLogging()anddisableLogging()have also been added. -
v1.3.2 Changes
August 10, 2022Contributor: Theo Gravity
- ➕ Add
setHooks()method (#5)
➕ Adds a new method on
LogLayercalledsetHooks()that allows ⚡️ hooks to be set or updated after creation of theLogLayer.🔧 Useful as an alternative to using configuration on init to set a hook
- ➕ Add