more debug message cleanup

This commit is contained in:
John Freed 2021-08-17 11:03:14 +02:00
parent 26a3bc1481
commit bc3f8803dc
6 changed files with 13 additions and 13 deletions

View file

@ -22,7 +22,7 @@ public class AddDeviceCommand implements JsonRpcLocalCommand {
private final static Logger logger = LoggerFactory.getLogger(AddDeviceCommand.class);
public static void attachToSubparser(final Subparser subparser) {
subparser.help("Link another device to this device. Only works, if this is the master device.");
subparser.help("Link another device to this device. Only works if this is the primary device.");
subparser.addArgument("--uri")
.required(true)
.help("Specify the uri contained in the QR code shown by the new device.");

View file

@ -16,7 +16,7 @@ public class SendSyncRequestCommand implements JsonRpcLocalCommand {
}
public static void attachToSubparser(final Subparser subparser) {
subparser.help("Send a synchronization request message to master device (for group, contacts, ...).");
subparser.help("Send a synchronization request message to primary device (for group, contacts, ...).");
}
@Override