Disable PSM log output by default. Developpers will have to explicity turn it on.

This commit is contained in:
javi%netscape.com 2000-12-19 22:57:44 +00:00
Родитель 38cb922a58
Коммит 5508ac61e0
1 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -116,7 +116,16 @@ int SSM_strncasecmp(const char *s1, const char *s2, size_t count);
#define STRNCASECMP(s1,s2,n) SSM_strncasecmp((s1),(s2),(n))
#endif
#ifdef DEBUG
/*
* If you want to enable PSM log output, make the following
* #if 0 block a #if 1 block or add a -DPSM_LOG to the compile
* line.
*/
#if 0
#define PSM_LOG 1
#endif
#if defined(DEBUG) && defined(PSM_LOG)
#define SSM_DEBUG SSM_DebugP
#else
#define SSM_DEBUG if(0) SSM_DebugP