-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commits allows photonvision to push logs to a remote syslog server such as the one on the roboRIO. To enable this on the RIO create a file in /etc/syslog-ng.d/ for example @Version: 3.8 source s_net { tcp(ip(0.0.0.0) port(514) max-connections (5000)); udp(); }; destination d_syslog { file("/var/log/remotelogs/syslog"); }; log { source(s_net); destination(d_syslog); }; This is experimental
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters