log client start only if log_level >= 2

This commit is contained in:
Alexandre Ratchov 2014-05-15 14:19:15 +02:00
parent dfa5df2eb5
commit 408318f6ec
1 changed files with 1 additions and 1 deletions

View File

@ -1622,7 +1622,7 @@ slot_attach(struct slot *s)
s->pstate = SLOT_RUN;
#ifdef DEBUG
if (log_level >= 0) {
if (log_level >= 2) {
slot_log(s);
log_puts(": attached at ");
log_puti(startpos);