From 64aaa36208a8fcaf11da1d99f191bd0066c1cf4c Mon Sep 17 00:00:00 2001 From: Marc Plano-Lesay Date: Tue, 3 Dec 2024 16:32:41 +1100 Subject: [PATCH] Add some logs when encountering a DateTimeOrTextProperty --- src/commands/sync_date_of_birth.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/sync_date_of_birth.rs b/src/commands/sync_date_of_birth.rs index 0272f1f..515c043 100644 --- a/src/commands/sync_date_of_birth.rs +++ b/src/commands/sync_date_of_birth.rs @@ -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), } -- 2.50.1