Add logging to help understand existing case skips better

This commit is contained in:
Dean Herbert 2021-06-28 10:42:42 +09:00
parent 128f08ccba
commit 4a557e73a7
1 changed files with 3 additions and 0 deletions

View File

@ -379,6 +379,8 @@ public virtual async Task<TModel> Import(TModel item, ArchiveReader archive = nu
Undelete(existing);
return existing;
}
LogForModel(item, $"Found existing (optimised) but failed pre-check.");
}
}
@ -422,6 +424,7 @@ void rollback()
return existing;
}
LogForModel(item, $"Found existing but failed re-use check.");
Delete(existing);
ModelStore.PurgeDeletable(s => s.ID == existing.ID);
}