Skip to content

Commit

Permalink
release notes for PR #830
Browse files Browse the repository at this point in the history
  • Loading branch information
gbirchmeier committed Jun 10, 2024
1 parent e9abea3 commit d2912d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QuickFIXn/Logger/ILogFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public interface ILogFactory
/// This log will
/// (1) only be used for messages that cannot be linked to a session
/// (2) only have its OnEvent() method called
/// (3) only be created when the first message is logged (to avoid e.g. empty log files)
/// This log is written to only on rare occasions. It's possible you may never see it created.
/// (3) only be created when a message is logged (to avoid empty log files)
/// Messages are written to this log only on rare occasions. It's possible you may never see it created.
/// </summary>
/// <returns></returns>
ILog CreateNonSessionLog();
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ What's New
* Also refactor the heck out of DateTimeConverter & tests: many functions renamed/deprecated
* #847 - remove setting MillisecondsInTimeStamp (gbirchmeier)
* Use TimestampPrecision instead (same as QF/j)
* #830 - replace ClientThreadHandler "Debug" logs with NonSessionLog (gbirchmeier)
* ILogFactory extended with a `CreateNonSessionLog()`. Pretty easy to implement though.
* Some classes were internalized, but I can't imagine people are using them in their app code.


**Non-breaking changes**
* #400 - added DDTool, a C#-based codegen, and deleted Ruby-based generator (gbirchmeier)
Expand Down

0 comments on commit d2912d2

Please sign in to comment.