autoKeeperData.joinWatch(address, autoKeeperWatchStats);
}
public static String collector(String[] command) {
Result result = null;
try {
result = Exec.execute(command);
if (result.getExitCode() == 0) {
return result.getStdout();
} else {
return result.getStderr();
}
} catch (Exception e) {
throw new ManagerException(e);
}
}