mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
21 lines
600 B
OpenEdge ABL
21 lines
600 B
OpenEdge ABL
// vim:noexpandtab:syntax=lpc
|
|
// $Id: library2.i,v 1.19 2007/10/08 11:00:31 lynx Exp $
|
|
|
|
#include <sandbox.h>
|
|
|
|
// one day this could be merged with PSYC_SYNCHRONIZE into
|
|
// channels of the same context
|
|
static object monitor;
|
|
|
|
void monitor_report(string mc, string text) {
|
|
#if DEBUG < 2
|
|
debug_message("MONITOR: "+ text +"\n");
|
|
#endif
|
|
log_file("MONITOR", mc +"\t"+ text +"\n");
|
|
#ifndef __PIKE__ // TPD
|
|
unless (monitor) monitor = load_object(PLACE_PATH "monitor");
|
|
if (monitor) monitor->msg(previous_object() || SERVER_UNIFORM,
|
|
mc, text, ([]));
|
|
#endif
|
|
}
|
|
|