Skip to content

Commit

Permalink
Remove logging which is too noisy
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherMann committed Jan 21, 2025
1 parent 4a77159 commit 5799bfc
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,7 @@ protected async Task<VirtualDisk> AddOrUpdateDisk(
{
var disk = await GetDisk(agentName, diskInfo);
if (disk is not null && disk.LastSeen >= timestamp)
{
_logger.LogDebug("Skipping inventory update for disk {DiskId} with timestamp {Timestamp:O}. Most recent information is dated {LastSeen:O}.",
disk.Id, timestamp, disk.LastSeen);
return disk;
}

VirtualDisk? parentDisk = null;
if (diskInfo.Parent is not null)
Expand Down

0 comments on commit 5799bfc

Please sign in to comment.