Difference between revisions of "Syslog.Server"
Jump to navigation
Jump to search
(Created page with "This is a simple server that receives of [https://en.wikipedia.org/wiki/Syslog syslog] messages and can optionally save them to a file. =Usage= <syntaxhighlight lang="bat">S...") |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
This is a simple server that receives of [https://en.wikipedia.org/wiki/Syslog syslog] messages and can optionally save them to a file. | This is a simple server that receives of [https://en.wikipedia.org/wiki/Syslog syslog] messages and can optionally save them to a file. | ||
| + | Once you [[Turn on Syslogging | turn syslogging on]], you will begin to receive the log messages. | ||
| + | |||
| + | It can be found at <code>C:\Program Files\Truxton\Tools\Syslog.Server.exe</code> | ||
=Usage= | =Usage= | ||
Latest revision as of 15:09, 20 July 2022
This is a simple server that receives of syslog messages and can optionally save them to a file. Once you turn syslogging on, you will begin to receive the log messages.
It can be found at C:\Program Files\Truxton\Tools\Syslog.Server.exe
Usage
Syslog.Server [log_filename]
Sorting
If you save the output to a file, you will notice that the entries are not in chronological order.
This is because of the delay incurred when sending a log message from logging threads.
They aren't off by much but it is annoying.
You can use the sort command to fix it.
The trick is to skip the first few characters.
sort /+8 /M 20480 log.txt /o sortedlog.txt