IBR-DTNSuite  0.8
daemon/src/Debugger.cpp
Go to the documentation of this file.
00001 #include "Debugger.h"
00002 #include "ibrdtn/utils/Utils.h"
00003 #include <ibrcommon/Logger.h>
00004 
00005 using namespace dtn::data;
00006 using namespace dtn::core;
00007 using namespace std;
00008 
00009 namespace dtn
00010 {
00011         namespace daemon
00012         {
00013                 void Debugger::callbackBundleReceived(const Bundle &b)
00014                 {
00015                         IBRCOMMON_LOGGER_DEBUG(5) << "Bundle received " << b.toString() << IBRCOMMON_LOGGER_ENDL;
00016                 }
00017         }
00018 }