skip to Main Content

Is there a way to send log messages to the local syslog service on centos 7 within a c# program? In python there is the syslog library but with c# the only way sems o be a UDP message ouver the network.

3

Answers


  1. There are several c# libraries for syslog, I used this one on a recent project

    https://github.com/emertechie/SyslogNet

    Login or Signup to reply.
  2. [Dislaimer: I wrote this]

    Heres my "gist" with a (very) lightweight Syslog library for .NET Core that uses p/invoke into libc

    https://github.com/jitbit/SyslogCore

    It’s only 66 lines of code, feel free to simply throw it in your project.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search