Mercurial > noffle
comparison src/server.c @ 423:466b42bb776e noffle
[svn] * src/server.c: Remove debug log that was duplicating log entries
made elsewhere.
| author | bears |
|---|---|
| date | Fri, 20 Jun 2003 11:46:06 +0100 |
| parents | f81fdcc2696b |
| children | a04c52f87b6e |
comparison
equal
deleted
inserted
replaced
| 422:18b3c63bf7dc | 423:466b42bb776e |
|---|---|
| 1 /* | 1 /* |
| 2 server.c | 2 server.c |
| 3 | 3 |
| 4 $Id: server.c 531 2003-05-22 08:41:37Z bears $ | 4 $Id: server.c 566 2003-06-20 10:46:06Z bears $ |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #if HAVE_CONFIG_H | 7 #if HAVE_CONFIG_H |
| 8 #include <config.h> | 8 #include <config.h> |
| 9 #endif | 9 #endif |
| 195 va_start( ap, fmt ); | 195 va_start( ap, fmt ); |
| 196 vsnprintf( s, MAXCHAR, fmt, ap ); | 196 vsnprintf( s, MAXCHAR, fmt, ap ); |
| 197 va_end( ap ); | 197 va_end( ap ); |
| 198 snprintf( line, MAXCHAR, "%u %s", stat, s ); | 198 snprintf( line, MAXCHAR, "%u %s", stat, s ); |
| 199 DynStr_appLn( server.reply, line ); | 199 DynStr_appLn( server.reply, line ); |
| 200 Log_dbg( LOG_DBG_PROTOCOL, "[S] %s", line ); | |
| 201 } | 200 } |
| 202 | 201 |
| 203 static void | 202 static void |
| 204 putTxtLn( const char *fmt, ... ) | 203 putTxtLn( const char *fmt, ... ) |
| 205 { | 204 { |
