Add some logs when encountering a DateTimeOrTextProperty #28

Merged
kernald merged 1 commit from dob-log into main 2024-12-03 16:34:21 +11:00

View file

@ -76,7 +76,9 @@ pub async fn sync_date_of_birth(ctx: Context, vcard_file: &PathBuf) -> Result<()
); );
} }
} }
DateTimeOrTextProperty::Text(_) => todo!(), DateTimeOrTextProperty::Text(prop) => {
todo!("{}: DateTimeOrTextProperty({})", formatted_name, prop)
}
}, },
None => debug!("No Immich match for {}", formatted_name), None => debug!("No Immich match for {}", formatted_name),
} }