Chore: Add detailed logging to storage.ts to debug saving issues ; Bump to 23.01.5
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user