#ifndef __TclLogWrapper_h_ #define __TclLogWrapper_h_ #include #include "TclLimitAlertWrapper.h" /* Implement the ti::log_add and ti::log_incr commands. The first will send a * message directly to the log file. The second will call * ThreadMonitor::increment(). See the API docs for more details. * * This uses ../shared/CurrentRequest.[Ch] to know what the current socket is. * That requires some work on the part of the main program to populate the * current request. If this field is not populated when the user tries to send * a message to the log, we just say that the message is not associated with * any socket. */ void installLogCommands(Tcl_Interp *interp); #endif