fix log for clean clients
This commit is contained in:
parent
4d314298c8
commit
3ebf12bfd0
|
@ -32,12 +32,12 @@ void clean_cbhandler(struct uloop_timeout *t)
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
log_info("remove %d of %d clients", count, all);
|
log_info("remove %d of %d clients", count, all);
|
||||||
if(!config_client_clean_authed)
|
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");
|
log_info(" from memory\n");
|
||||||
}else{
|
}else{
|
||||||
log_verbose("remove %d of %d clients", count, all);
|
log_verbose("remove %d of %d clients", count, all);
|
||||||
if(!config_client_clean_authed)
|
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");
|
log_verbose(" from memory\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue