Skip to content

Commit 898aa6d

Browse files
committed
Merge branch 'develop' of https://github.com/SenseNet/sn-tools into develop
2 parents 9c06244 + 098601a commit 898aa6d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/SenseNet.Tools/Diagnostics/SnFileSystemEventLogger.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ protected virtual void CreateFile(string path)
108108
protected virtual void WriteToFile(string entry, string fileName)
109109
{
110110
using (var writer = new StreamWriter(fileName, true))
111-
writer.Write(entry);
111+
{
112+
writer.WriteLine(entry);
113+
writer.WriteLine();
114+
}
112115
}
113116
}
114117
}

0 commit comments

Comments
 (0)