[audio] Quieten jack about xruns

They messages are annoying at the moment, but I will want them when I
get around to chasing down the root cause, so hidden behind a developer
mask.
This commit is contained in:
Bill Currie 2020-03-23 15:19:05 +09:00
parent 4a61ff0d35
commit a9c6974fc7

View file

@ -306,7 +306,9 @@ snd_jack_error (const char *desc)
static int static int
snd_jack_xrun (void *arg) snd_jack_xrun (void *arg)
{ {
fprintf (stderr, "snd_jack: xrun\n"); if (developer->int_val & SYS_SND) {
fprintf (stderr, "snd_jack: xrun\n");
}
return 0; return 0;
} }