1998-04-30 20:53:59 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#include "mkutils.h"
|
|
|
|
#include "mktrace.h"
|
|
|
|
|
|
|
|
/* If you want to trace netlib, set this to 1, or use CTRL-ALT-T
|
|
|
|
* stroke (preferred method) to toggle it on and off */
|
|
|
|
int MKLib_trace_flag=0;
|
|
|
|
|
|
|
|
PUBLIC void NET_ToggleTrace(void) {
|
|
|
|
if(MKLib_trace_flag)
|
|
|
|
MKLib_trace_flag = 0;
|
|
|
|
else
|
|
|
|
MKLib_trace_flag = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Map netlib trace messages into nspr logger so that they are
|
|
|
|
* thread safe. */
|
|
|
|
#if defined(DEBUG) || defined(NETLIB_TRACE_ON)
|
|
|
|
|
|
|
|
PRLogModuleInfo* NETLIB=NULL;
|
|
|
|
#define out PR_LOG_ALWAYS
|
|
|
|
|
|
|
|
|
|
|
|
/* Used by NET_NTrace() */
|
|
|
|
PRIVATE void net_Trace(char *msg) {
|
|
|
|
PR_LOG(NETLIB, out, (msg));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Called to trace a message */
|
|
|
|
void NET_NTrace(char *msg, int32 length) {
|
1998-05-19 00:54:09 +00:00
|
|
|
char * new_string = PR_Malloc(length+1);
|
1998-04-30 20:53:59 +00:00
|
|
|
if(!new_string)
|
|
|
|
return;
|
|
|
|
strncpy(new_string, msg, length);
|
|
|
|
new_string[length] = '\0';
|
|
|
|
|
|
|
|
net_Trace(new_string);
|
|
|
|
FREE(new_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* #define'd in mktrace.h to TRACEMSG */
|
|
|
|
void _MK_TraceMsg(char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
char buf[512];
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
PR_vsnprintf(buf, sizeof(buf), fmt, ap);
|
|
|
|
|
1998-05-19 00:54:09 +00:00
|
|
|
net_Trace(buf);
|
1998-04-30 20:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DEBUG || NETLIB_TRACE_ON */
|