From 7e8baaf411171d0d2a4f53a344f384479610322a Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Fri, 3 Jan 2020 11:04:02 +0100 Subject: [PATCH] Removed the logging which is a bit too verbose --- lv2/sfizz.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lv2/sfizz.c b/lv2/sfizz.c index 3a738697..8d3b40d7 100644 --- a/lv2/sfizz.c +++ b/lv2/sfizz.c @@ -526,9 +526,10 @@ sfizz_lv2_process_midi_event(sfizz_plugin_t *self, const LV2_Atom_Event *ev) static void sfizz_lv2_status_log(sfizz_plugin_t *self) { - lv2_log_note(&self->logger, "[sfizz] Allocated buffers: %d\n", sfizz_get_num_buffers(self->synth)); - lv2_log_note(&self->logger, "[sfizz] Allocated bytes: %d bytes\n", sfizz_get_num_bytes(self->synth)); - lv2_log_note(&self->logger, "[sfizz] Active voices: %d\n", sfizz_get_num_active_voices(self->synth)); + UNUSED(self); + // lv2_log_note(&self->logger, "[sfizz] Allocated buffers: %d\n", sfizz_get_num_buffers(self->synth)); + // lv2_log_note(&self->logger, "[sfizz] Allocated bytes: %d bytes\n", sfizz_get_num_bytes(self->synth)); + // lv2_log_note(&self->logger, "[sfizz] Active voices: %d\n", sfizz_get_num_active_voices(self->synth)); } static void