Bugfixes: Vitals Import (German columns + decimal values) #23

Merged
Lars merged 6 commits from develop into main 2026-03-23 16:52:28 +01:00
Showing only changes of commit 4b024e6d0f - Show all commits

View File

@ -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 {