diff --git a/SerialDisk/Storage/Disk.cs b/SerialDisk/Storage/Disk.cs index 15d840d..e7460b8 100644 --- a/SerialDisk/Storage/Disk.cs +++ b/SerialDisk/Storage/Disk.cs @@ -485,7 +485,7 @@ private void UpdateLocalDirectoryOrFile(List localDir // it's a file else { - _logger.Log($"Checking if local file {newContentPath} should be updated", Constants.LoggingLevel.Info); + _logger.Log($"Checking if local file {newContentPath} should be updated", Constants.LoggingLevel.Debug); int fileSize = directoryData[directoryEntryIndex + 28] | (directoryData[directoryEntryIndex + 29] << 8) | (directoryData[directoryEntryIndex + 30] << 16) | (directoryData[directoryEntryIndex + 31] << 24);