IBR-DTNSuite  0.8
daemon/src/DevNull.cpp
Go to the documentation of this file.
00001 /*
00002  * DevNull.cpp
00003  *
00004  *  Created on: 27.01.2010
00005  *      Author: morgenro
00006  */
00007 
00008 #include "DevNull.h"
00009 #include <ibrcommon/Logger.h>
00010 
00011 namespace dtn
00012 {
00013         namespace daemon
00014         {
00015                 void DevNull::callbackBundleReceived(const dtn::data::Bundle &b)
00016                 {
00017                         IBRCOMMON_LOGGER(info) << "Bundle " << b.toString() << " went to /null" << IBRCOMMON_LOGGER_ENDL;
00018                 }
00019         }
00020 }