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 ); } }