function logCacheStats()

in src/application/ui/src/components/ProductImage.js [253:259]


function logCacheStats() {
    // Only log stats when in debug mode
    if (!DEBUG_MODE) return;

    const stats = imageUrlCache.getStats();
    console.log(`Image cache stats: ${stats.total} total, ${stats.loaded} loaded, ${stats.errors} errors, ${stats.visible} visible`);
}