| PMDEBUG(3) | PMDEBUG(3) |
void pmDebug(int level, const char *format, ...);
int |
level |
Debug level | |
const char * |
format |
Message format | |
|
... |
Variable number of message arguments |
pmDebug() prints a debug message, according to the value of
level, to the error file which is set by
pmSetDebug().level argument is:
PM_ERROR |
1 |
Unrecoverble error |
PM_WARNING |
2 |
Temporary or recoverble error |
PM_INFO |
3 |
Just an information, not an error |
format and following arguments are the same as printf(3).
| None |