You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger: Windows Notepad requires CRLF and not just LF
* Problem:
* Windows Notepad, prior to Server 2019, does not display log files properly if they only end with LF
* Windows programs end lines with CRLF instead of just LF
* Implementation:
* Modified the logger.Fire() routine to add a custom check for Windows only
* The logrus Format() handler ends the line with just a LF
* The additional code scans for any trailing LF (excluding trailing CRLF) and replaces it with CRLF
* Testing:
* Verified log file viewable under windows
* Reviewers:
* @shivamerla, @raunak
* Bug: SV-764
0 commit comments