diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-18 10:56:49 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-18 10:56:49 +0000 |
| commit | 45cd7fc551ffcb4e88347acf0347f5cc1915a9f1 (patch) | |
| tree | fbef02dccf107fb627a596e278b0d82d8c21133e /include | |
| parent | 1d8f367e4c0e51436376546df93de1978bc0050c (diff) | |
- fixed WEB monitoring (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@4150 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.h | 4 |
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" |
