Bugfixes: Vitals Import (German columns + decimal values) #23
|
|
@ -377,7 +377,10 @@ async def import_apple_health_baseline(
|
||||||
updated += 1
|
updated += 1
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Error importing row: {e}")
|
import traceback
|
||||||
|
error_detail = f"Row error: {str(e)}\nTraceback: {traceback.format_exc()}"
|
||||||
|
logger.error(error_detail)
|
||||||
|
print(error_detail) # Force output to Docker logs
|
||||||
errors += 1
|
errors += 1
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user