summaryrefslogtreecommitdiff
path: root/src/base/server.c
diff options
context:
space:
mode:
authorMichal Zima <xhire@mujmalysvet.cz>2009-12-06 22:58:26 +0100
committerMichal Zima <xhire@mujmalysvet.cz>2009-12-06 22:58:26 +0100
commit753131cf9b32315fdd11f2ce6e58b8f2d6ba3bc1 (patch)
treecfbded574ded7c3c666de6211877469ff6a95d75 /src/base/server.c
parenta0939379bb1185ee6d66739d9d021466d5d89624 (diff)
Revised methods how are translated strings handled
Few comments were made available to Doxygen
Diffstat (limited to 'src/base/server.c')
-rw-r--r--src/base/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/server.c b/src/base/server.c
index 2b968d1..17d8abe 100644
--- a/src/base/server.c
+++ b/src/base/server.c
@@ -281,7 +281,7 @@ void server_send_client(client_t *p, char *msg)
#ifndef PUBLIC_SERVER
if (isParamFlag("--send")) {
- printf(_("[Debug] Sending: %s"), msg);
+ debug("Sending: %s", msg);
}
#endif /* PUBLIC_SERVER */
@@ -308,7 +308,7 @@ static void client_eventWorkRecvList(client_t *client)
#ifndef PUBLIC_SERVER
if (isParamFlag("--recv")) {
- printf(_("[Debug] Received: %s"), line);
+ debug("Received: %s", line);
}
#endif /* PUBLIC_SERVER */