[FIX] Исправление ошибок в ClientsCommand

This commit is contained in:
Gravit 2019-07-01 17:13:59 +07:00
parent 37b679bbd6
commit c6782d86a7
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -35,9 +35,9 @@ public void invoke(String... args) throws Exception {
else else
{ {
LogHelper.info("Client name %s | ip %s", client.username == null ? "null" : client.username, ip); LogHelper.info("Client name %s | ip %s", client.username == null ? "null" : client.username, ip);
LogHelper.info("Data: checkSign %s | isSecure %s | auth_id %s", client.checkSign ? "true" : "false", client.isSecure ? "true" : "false", LogHelper.subInfo("Data: checkSign %s | isSecure %s | auth_id %s", client.checkSign ? "true" : "false", client.isSecure ? "true" : "false",
client.auth_id); client.auth_id);
LogHelper.info("Permissions: %s (long %d)", client.permissions == null ? "null" : client.permissions.toString(), client.permissions == null ? 0 : client.permissions.toString()); LogHelper.subInfo("Permissions: %s (long %d)", client.permissions == null ? "null" : client.permissions.toString(), client.permissions == null ? 0 : client.permissions.toLong());
} }
})); }));
} }