LeaseMgrFactory::destroy();
startBackend(V4);
} catch (...) {
- std::cerr << "ERROR: unable to start memfile backend.\n";
+ std::cerr << "ERROR: unable to start memfile backend." << std::endl;
throw;
}
lmptr_ = &(LeaseMgrFactory::instance());
LeaseMgrFactory::create(getConfigString(u));
} catch (...) {
std::cerr << "*** ERROR: unable to create instance of the Memfile "
- << "lease database backend.\n";
+ << "lease database backend." << std::endl;
throw;
}
lmptr_ = &(LeaseMgrFactory::instance());
lmptr_->rollback();
} catch (...) {
std::cerr << "WARNING: rollback has failed. This is surprising as "
- << "memfile doesn't support rollback.\n";
+ << "memfile doesn't support rollback." << std::endl;
}
LeaseMgrFactory::destroy();