We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4567c5a commit 5aecb86Copy full SHA for 5aecb86
CSVWriter/CSVWriter.cs
@@ -42,7 +42,7 @@ public bool Initialize() {
42
eventWriter = new StreamWriter(new FileStream(filePath, FileMode.Create), Encoding.UTF8);
43
// Header Line, if any columns are added to `columns`
44
if (columns.Count > 0) {
45
- if (writeUnixTime) columns.Add("unix_ms");
+ if (writeUnixTime) columns.Insert(0,"unix_ms");
46
eventWriter.WriteLine(String.Join(',', columns));
47
}
48
0 commit comments