Add some logs when encountering a DateTimeOrTextProperty

This commit is contained in:
Marc Plano-Lesay 2024-12-03 16:32:41 +11:00
parent 85d60dac3d
commit 64aaa36208
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF

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),
} }