Опечатка ConfigCommand

This commit is contained in:
Gravit 2019-01-10 03:36:02 +07:00
parent 7f4c1e0dbf
commit 8d8eb2e9a3
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -22,7 +22,7 @@ public String getUsageDescription() {
@Override
public void invoke(String... args) throws Exception {
verifyArgs(args,2);
LogHelper.info("Call %s module % action",args[0],args[1]);
LogHelper.info("Call %s module %s action",args[0],args[1]);
String[] new_args = new String[args.length - 2];
System.arraycopy(args, 2, new_args, 0, args.length - 2);
server.reconfigurableManager.call(args[0],args[1],new_args);