//#include "CalTime.h"
// for logging
//#include "GeneralizedCALAPI.h"
#include <sstream>

void report_event(const char* file, int line, const char*  func, 
	const char* Name, const char* Status, const char* Arg)
{
  //	CalEvent event ("IMGSEARCH", Name, Status, Arg);
#ifdef MANTIS_LOG_DEBUG
	std::stringstream s;
	s << func << "(" << file << ":" << line << ")";
	// event.AddData("Where", s.str().c_str()); 
#endif
	// event.AddData("What", Arg);
}

