Skip to content

Commit

Permalink
Change message log level
Browse files Browse the repository at this point in the history
  • Loading branch information
z80andrew committed Nov 29, 2020
1 parent 1947f3e commit 30761ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SerialDisk/Storage/Disk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ private void UpdateLocalDirectoryOrFile(List<LocalDirectoryContentInfo> 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);

Expand Down

0 comments on commit 30761ff

Please sign in to comment.