Skip to content

Commit

Permalink
bugfix in FixToJson example
Browse files Browse the repository at this point in the history
  • Loading branch information
gbirchmeier committed Jan 31, 2025
1 parent 71ba98e commit 858e9bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/FixToJson/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static void FixToJson(
{
line = line.Trim();
msg.FromString(line, false, sessionDataDictionary, appDataDictionary, msgFactory);
Console.WriteLine(comma + msg.ToJSON(convertEnumsToDescriptions: humanReadableValues));
Console.WriteLine(comma + msg.ToJSON(appDataDictionary, convertEnumsToDescriptions: humanReadableValues));
comma = ",";
}
}
Expand Down
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ What's New
* #925 - Make ToAdmin() support DoNotSend (zsojma)
* #927 - Remove lock from ScreenLog as Console.WriteLine is thread safe and remove unnecessary Dispose call (Rob-Hague)
* #926 - don't init FileLog writers until first use (Rob-Hague)
* #931 - bugfix in FixToJson example program

### v1.12.0

Expand Down

0 comments on commit 858e9bf

Please sign in to comment.