Merge branch 'development'
[NeonServV5.git] / src / EventLogger.c
index 77956d799254e639c21a29fc3b8233d4e7713960..e131478b54bc8d8379e2dcb54ae947c224a455ec 100644 (file)
@@ -21,6 +21,7 @@
 #include "UserNode.h"
 #include "ChanNode.h"
 #include "DBHelper.h"
+#include "log.h"
 
 static struct Event *first_event = NULL, *last_event = NULL;
 
@@ -28,7 +29,7 @@ struct Event *createEvent(struct ClientSocket *client, struct UserNode *user, st
     struct Event *event = malloc(sizeof(*event));
     if (!event)
     {
-        perror("malloc() failed");
+        printf_log("main", LOG_ERROR, "%s:%d malloc() failed", __FILE__, __LINE__);
         return NULL;
     }
     event->client = client;
@@ -80,6 +81,7 @@ void logEvent(struct Event *event) {
             if((event->chan->flags & CHANFLAG_CHAN_REGISTERED))
                 printf_mysql_query("INSERT INTO `godlog` (`godlog_cid`, `godlog_uid`, `godlog_time`, `godlog_cmd`) VALUES ('%d', '%d', UNIX_TIMESTAMP(), '%s')", event->chan->channel_id, userid, escape_string(fullcmd));
         }
+        printf_log("main", LOG_OVERRIDE, "[%s:%s (%s)] %s", (event->chan ? event->chan->name : "*"), event->user->nick, auth, fullcmd);
     }
 }