summaryrefslogtreecommitdiffstats
path: root/include/common.h
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-05-18 10:56:49 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-05-18 10:56:49 +0000
commit45cd7fc551ffcb4e88347acf0347f5cc1915a9f1 (patch)
treefbef02dccf107fb627a596e278b0d82d8c21133e /include/common.h
parent1d8f367e4c0e51436376546df93de1978bc0050c (diff)
downloadzabbix-45cd7fc551ffcb4e88347acf0347f5cc1915a9f1.tar.gz
zabbix-45cd7fc551ffcb4e88347acf0347f5cc1915a9f1.tar.xz
zabbix-45cd7fc551ffcb4e88347acf0347f5cc1915a9f1.zip
- fixed WEB monitoring (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@4150 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h
index 9f36173a..6890ff20 100644
--- a/include/common.h
+++ b/include/common.h
@@ -24,8 +24,8 @@
# define SDI(msg) fprintf(stderr, "DEBUG INFO: %s\n", msg); fflush(stderr);
# define SDI2(msg,p1) fprintf(stderr, "DEBUG INFO: " msg "\n", p1); fflush(stderr);
#else
-# define SDI(msg) fprintf(stderr, "[%6i]DEBUG INFO: %s\n", getpid(), msg); fflush(stderr);
-# define SDI2(msg,p1) fprintf(stderr, "[%6i]DEBUG INFO: " msg "\n", getpid(), p1); fflush(stderr);
+# define SDI(msg) fprintf(stderr, "%6i:DEBUG INFO: %s\n", getpid(), msg); fflush(stderr);
+# define SDI2(msg,p1) fprintf(stderr, "%6i:DEBUG INFO: " msg "\n", getpid(), p1); fflush(stderr);
#endif
#include "sysinc.h"