try {
m = new Mongo(host, port);
db = m.getDB(dbName);
LOG.info("opened database (" + dbName + "): " + db);
} catch (final UnknownHostException e) {
throw new NoSqlStoreException(e);
} catch (final MongoException e) {
throw new NoSqlStoreException(e);
}
}