projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
128e2e3
)
stat.c: Comment out noisy debug messages.
author
Andre Noll
<maan@systemlinux.org>
Thu, 24 Apr 2008 17:05:33 +0000
(19:05 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Thu, 24 Apr 2008 17:05:33 +0000
(19:05 +0200)
stat.c
patch
|
blob
|
history
diff --git
a/stat.c
b/stat.c
index f54858a03c4226784304291eebde2ba7a5acc453..e640e4c6994ca830e769c34dc6072a17ac254606 100644
(file)
--- a/
stat.c
+++ b/
stat.c
@@
-113,7
+113,7
@@
void stat_client_write(const char *msg, int itemnum)
continue;
if (write_ok(fd) > 0) {
ret = write(fd, msg, len);
-
PARA_DEBUG_LOG("dumped %s to fd %d, ret = %d\n", msg, fd, ret);
+
//
PARA_DEBUG_LOG("dumped %s to fd %d, ret = %d\n", msg, fd, ret);
if (ret == len)
continue;
}
@@
-125,8
+125,8
@@
void stat_client_write(const char *msg, int itemnum)
free(sc);
dump_stat_client_list();
}
-
if (num_clients)
-
PARA_DEBUG_LOG("%d client(s)\n", num_clients);
+
//
if (num_clients)
+
//
PARA_DEBUG_LOG("%d client(s)\n", num_clients);
}
/**