fix log for clean clients

This commit is contained in:
Martin/Geno 2018-07-24 12:57:44 +02:00
parent 4d314298c8
commit 3ebf12bfd0
No known key found for this signature in database
GPG Key ID: 9D7D3C6BFF600C6A
1 changed files with 2 additions and 2 deletions

View File

@ -32,12 +32,12 @@ void clean_cbhandler(struct uloop_timeout *t)
if (count > 0) {
log_info("remove %d of %d clients", count, all);
if(!config_client_clean_authed)
log_info(" (skipped %d authed clients)\n", auth);
log_info(" (skipped %d authed clients)", auth);
log_info(" from memory\n");
}else{
log_verbose("remove %d of %d clients", count, all);
if(!config_client_clean_authed)
log_verbose(" (skipped %d authed clients)\n", auth);
log_verbose(" (skipped %d authed clients)", auth);
log_verbose(" from memory\n");
}
}