From ef3cc5396fbcf193ddd1e3b6b5978bdda4bdbe55 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Thu, 13 Apr 2017 11:30:00 +0000 Subject: implement logging control for PMs configurable via the new g_logPrivateMessages cvar: 0: do not log anything 1: log that a PM was sent, and to what name-pattern 2: log the contents of the PMs too a PM to the console is not considered a real PM. (logging is parallel with printing to the console.) --- src/game/g_cmds.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/game/g_cmds.c') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index f93b2f8..dad9cfe 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -5799,10 +5799,14 @@ void G_PrivateMessage( gentity_t *ent ) ADMP( va( "%s\n", str ) ); - G_LogPrintf( "%s: %s^7: %s^7: %s\n", - ( teamonly ) ? "tprivmsg" : "privmsg", - ( ent ) ? ent->client->pers.netname : "console", - name, msg ); + if( g_logPrivateMessages.integer >= 1 ) + { + G_LogPrintf( "%s: %s^7: %s^7%s%s\n", + ( teamonly ) ? "tprivmsg" : "privmsg", + ( ent ) ? ent->client->pers.netname : "console", + name, g_logPrivateMessages.integer >= 2 ? ": " : "", + g_logPrivateMessages.integer >= 2 ? msg : "" ); + } } if( ignored ) -- cgit