diff --git a/changelog.md b/changelog.md index 371fa95e0..ee203ab4c 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.3.0] - 2024-12-18 + ## [7.3.0] - 2024-05-13 ### New Feature @@ -302,9 +304,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * * * -[Unreleased]: https://github.com/ColdBox/coldbox-platform/compare/v7.3.0...HEAD +[Unreleased]: https://github.com/GunnarLieb/coldbox-platform/compare/v7.3.0...HEAD + +[7.3.0]: https://github.com/GunnarLieb/coldbox-platform/compare/v7.3.0...v7.3.0 -[7.3.0]: https://github.com/ColdBox/coldbox-platform/compare/v7.2.1...v7.3.0 [7.2.1]: https://github.com/ColdBox/coldbox-platform/compare/v7.2.0...v7.2.1 diff --git a/system/cache/policies/FIFO.cfc b/system/cache/policies/FIFO.cfc index 075146871..b1bf096c2 100644 --- a/system/cache/policies/FIFO.cfc +++ b/system/cache/policies/FIFO.cfc @@ -25,6 +25,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { * Execute the policy */ void function execute(){ + var e = {}; // Get searchable index try { var index = getAssociatedCache() @@ -34,7 +35,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { // process evictions processEvictions( index ); } catch ( Any e ) { - getLogger().error( "Error sorting via store indexer #e.message# #e.detail# #e.stackTrace#." ); + getLogger().error( "Error sorting via store indexer #e.message#", e ); } } diff --git a/system/cache/policies/LFU.cfc b/system/cache/policies/LFU.cfc index 70a8bd857..99cb8a2ea 100644 --- a/system/cache/policies/LFU.cfc +++ b/system/cache/policies/LFU.cfc @@ -26,6 +26,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { * Execute the policy */ void function execute(){ + var e = {}; // Get searchable index try { var index = getAssociatedCache() @@ -35,7 +36,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { // process evictions processEvictions( index ); } catch ( any e ) { - getLogger().error( "Error sorting via store indexer #e.message# #e.detail# #e.stackTrace#." ); + getLogger().error( "Error sorting via store indexer #e.message#", e ); } } diff --git a/system/cache/policies/LIFO.cfc b/system/cache/policies/LIFO.cfc index 1c11bfe4d..96da608aa 100644 --- a/system/cache/policies/LIFO.cfc +++ b/system/cache/policies/LIFO.cfc @@ -29,6 +29,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { * Execute the policy */ void function execute(){ + var e = {}; // Get searchable index try { var index = getAssociatedCache() @@ -38,7 +39,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { // process evictions processEvictions( index ); } catch ( Any e ) { - getLogger().error( "Error sorting via store indexer #e.message# #e.detail# #e.stackTrace#." ); + getLogger().error( "Error sorting via store indexer #e.message#", e ); } } diff --git a/system/cache/policies/LRU.cfc b/system/cache/policies/LRU.cfc index c7a9b5e04..1fca0404e 100644 --- a/system/cache/policies/LRU.cfc +++ b/system/cache/policies/LRU.cfc @@ -26,6 +26,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { * Execute the policy */ void function execute(){ + var e = {}; // Get searchable index try { var index = getAssociatedCache() @@ -35,7 +36,7 @@ component extends="coldbox.system.cache.policies.AbstractEvictionPolicy" { // process evictions processEvictions( index ); } catch ( Any e ) { - getLogger().error( "Error sorting via store indexer #e.message# #e.detail# #e.stackTrace#." ); + getLogger().error( "Error sorting via store indexer #e.message#", e ); } }