/// A CalDAV source that stores its items in a local folder.
///
/// It automatically updates the content of the folder when dropped (see its `Drop` implementation), but you can also manually call [`save_to_folder`]
/// It automatically updates the content of the folder when dropped (see its `Drop` implementation), but you can also manually call [`Cache::save_to_folder`]
#[derive(Debug)]
pubstructCache{
backing_folder: PathBuf,
@ -174,7 +174,7 @@ impl Cache {
implDropforCache{
fndrop(&mutself){
ifletErr(err)=self.save_to_folder(){
log::error!("Unable to automatically save the cache when it's no longer required");
log::error!("Unable to automatically save the cache when it's no longer required: {}",err);