zeek/src/DbgWatch.cc
Robin Sommer 66e2c3b623 Renaming the Logger to Reporter.
Also changing output to not include timestamps when we haven't started
processing packets yet.
2011-07-01 09:22:33 -07:00

22 lines
361 B
C++

// Implementation of watches
#include "config.h"
#include "Debug.h"
#include "DbgWatch.h"
#include "Reporter.h"
// Support classes
DbgWatch::DbgWatch(BroObj* var_to_watch)
{
reporter->InternalError("DbgWatch unimplemented");
}
DbgWatch::DbgWatch(Expr* expr_to_watch)
{
reporter->InternalError("DbgWatch unimplemented");
}
DbgWatch::~DbgWatch()
{
}