Switch to syslog for logging messages.
[matches/MCTX3420.git] / server / main.c
index 4b36b20..c032eb1 100644 (file)
@@ -11,6 +11,7 @@
 #include "control.h"
 
 // --- Standard headers --- //
+#include <syslog.h> // for system logging
 #include <signal.h> // for signal handling
 
 // --- Variable definitions --- //
@@ -68,6 +69,9 @@ int main(int argc, char ** argv)
 {
        ParseArguments(argc, argv);
 
+       //Open the system log
+       openlog("mctxserv", LOG_PID | LOG_PERROR, LOG_USER);
+       Log(LOGINFO, "Server started");
        // signal handler
        //TODO: Make this work
        /*

UCC git Repository :: git.ucc.asn.au