if (b.getState() == Bridge.State.STARTED && args == null) {
_bc.logInfo(_bmr.getString(_bmr.I_BRIDGE_ALREADY_STARTED, b.getName()), null);
return true;
}
BridgeContext ctx = new BridgeContext(_bc, b.getName());
StringBuffer sf = new StringBuffer();
sf.append(_bmr.getString(_bmr.I_STARTING_BRIDGE_WITH_PROPS, b.getName()));
String key = null;
Enumeration e = ctx.getConfig().propertyNames();
while (e.hasMoreElements()) {
key = (String)e.nextElement();
sf.append("\t"+key+"="+ctx.getConfig().getProperty(key)+"\n");
}
if (args == null) {
_bc.logInfo(sf.toString(), null);
}