From 804effc3e7615329465ec791d74852311a127b83 Mon Sep 17 00:00:00 2001 From: nicrd Date: Sun, 9 Sep 2018 16:49:16 -0400 Subject: [PATCH] Fix console logging typo in MirrorProvider --- .../MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs b/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs index 5100884cf..aebdcd7ba 100644 --- a/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs +++ b/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs @@ -317,7 +317,7 @@ private void OnFileModifiedOrDeleted(string relativePath, bool isDirectory, bool // NotificationType.FileHandleClosedFileModified and so this method will only be called for modifications. // Once MacFileSystemVirtualizer supports delete notifications we'll register for // NotificationType.FileHandleClosedFileDeleted and this method will be called for both modifications and deletions. - Console.WriteLine($"OnFileModifiedOrDeleted: `{relativePath}`, isDirectory: {isDirectory}, isModfied: {isFileDeleted}, isDeleted: {isFileDeleted}"); + Console.WriteLine($"OnFileModifiedOrDeleted: `{relativePath}`, isDirectory: {isDirectory}, isModfied: {isFileModified}, isDeleted: {isFileDeleted}"); } private void OnFileRenamed( @@ -345,4 +345,4 @@ private static HResult HResultFromWin32(int win32error) return win32error <= 0 ? (HResult)win32error : (HResult)unchecked((win32error & 0x0000FFFF) | (FacilityWin32 << 16) | 0x80000000); } } -} \ No newline at end of file +}