From bb75ca7bbcc2ff1fc87311e16c278f0bf59aef7e Mon Sep 17 00:00:00 2001 From: "javi%netscape.com" Date: Tue, 19 Dec 2000 22:57:44 +0000 Subject: [PATCH] Disable PSM log output by default. Developpers will have to explicity turn it on. git-svn-id: svn://10.0.0.236/trunk@83868 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/security/psm/server/serv.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/mozilla/security/psm/server/serv.h b/mozilla/security/psm/server/serv.h index a317ad311bc..eadde1eabdb 100644 --- a/mozilla/security/psm/server/serv.h +++ b/mozilla/security/psm/server/serv.h @@ -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