correctly print newlines to separate entries

This commit is contained in:
Dietmar Maurer 2017-09-18 11:50:52 +02:00
parent a101f17a59
commit 207eb01b55

View File

@ -800,12 +800,15 @@ sentry_print (LParser *parser, SEntry *sentry)
nq = nq->next; nq = nq->next;
} }
if (!parser->verbose) { fflush (stdout); return; }
if (parser->verbose > 1) { if (parser->verbose > 1) {
printf ("LOGS:\n"); printf ("LOGS:\n");
loglist_print (&sentry->loglist); loglist_print (&sentry->loglist);
printf ("\n");
} }
printf ("\n");
fflush (stdout); fflush (stdout);
} }