diff --git a/Iceshrimp.Backend/Core/Services/DriveService.cs b/Iceshrimp.Backend/Core/Services/DriveService.cs index ca33131d..8b72cbb1 100644 --- a/Iceshrimp.Backend/Core/Services/DriveService.cs +++ b/Iceshrimp.Backend/Core/Services/DriveService.cs @@ -85,6 +85,9 @@ public class DriveService( await db.SaveChangesAsync(); return clonedFile; } + + if (!logExisting) + logger.LogDebug("Storing file {uri} for user {userId}", uri, user.Id); var res = await httpClient.GetAsync(uri);