////////////////////////////////////////////////////////
// RemoteLog
//
// This implements RemoteLogIF
//
// It acts a simple UDP message broadcaster to get 
// write information to the topside module
//
///////////////////////////////////////////////////////

#include "RemoteLog.h"
#include "VehicleConfigurator.h"

int main(int argc, char **argv)
{
    

    try {
	VehicleConfigurator::setName("remoteLog");
	
	RemoteLog *remoteLog = new RemoteLog();
	remoteLog->run();
    }
    catch (SharedObject::Error e) {
	//Syslog::write("caught exception: %s\n", e.msg);
    }
    catch (...) {
	//Syslog::write("caught exception!\n");
    }
    
    return 1;
}
