Chore: Add detailed logging to storage.ts to debug saving issues ; Bump to 23.01.5

This commit is contained in:
2026-06-13 01:36:34 +02:00
parent 0cb5e609ed
commit 9e9feff220
4 changed files with 12 additions and 6 deletions
+3 -3
View File
@@ -359,9 +359,9 @@ export default function CameraScreen({
// Auto-save the high-res original raw photo to the gallery
try {
await saveToGallery(capturedUri, 'Raw', eventText);
console.log('Auto-saved high-res raw capture to gallery');
} catch (e) {
console.error('Failed to auto-save raw capture:', e);
logger.log('Auto-saved high-res raw capture to gallery');
} catch (e: any) {
logger.error(`Failed to auto-save raw capture: ${e?.message || e}`);
}
// Downscale for the UI to prevent OutOfMemoryError in React Native Image