diff --git a/src/event_loop/linux.rs b/src/event_loop/linux.rs index 6bf456a0..83ea9726 100644 --- a/src/event_loop/linux.rs +++ b/src/event_loop/linux.rs @@ -72,7 +72,7 @@ where true } None => { - nih_log!("The executor doesn't exist but somehow it's still submitting tasks, this shouldn't be possible!"); + nih_trace!("The executor doesn't exist but somehow it's still submitting tasks, this shouldn't be possible!"); false } } @@ -113,13 +113,13 @@ where Ok(Message::Task(task)) => match executor.upgrade() { Some(e) => unsafe { e.execute(task) }, None => { - nih_log!("Received a new task but the executor is no longer alive, shutting down worker"); + nih_trace!("Received a new task but the executor is no longer alive, shutting down worker"); return; } }, Ok(Message::Shutdown) => return, Err(err) => { - nih_log!( + nih_trace!( "Worker thread got disconnected unexpectedly, shutting down: {}", err ); diff --git a/src/event_loop/windows.rs b/src/event_loop/windows.rs index e17163d2..855438ca 100644 --- a/src/event_loop/windows.rs +++ b/src/event_loop/windows.rs @@ -142,7 +142,7 @@ where true } None => { - nih_log!("The executor doesn't exist but somehow it's still submitting tasks, this shouldn't be possible!"); + nih_trace!("The executor doesn't exist but somehow it's still submitting tasks, this shouldn't be possible!"); false } } diff --git a/src/wrapper/clap/wrapper.rs b/src/wrapper/clap/wrapper.rs index e6deb34d..07ac14db 100644 --- a/src/wrapper/clap/wrapper.rs +++ b/src/wrapper/clap/wrapper.rs @@ -1424,7 +1424,7 @@ impl Wrapper

{ } // TODO: Make sure this only gets logged in debug mode _ => { - nih_log!( + nih_trace!( "Unhandled CLAP event type {} for namespace {}", raw_event.type_, raw_event.space_id @@ -2152,7 +2152,7 @@ impl Wrapper

{ } else if id == CStr::from_ptr(CLAP_EXT_TAIL) { &wrapper.clap_plugin_tail as *const _ as *const c_void } else { - nih_log!("Host tried to query unknown extension {:?}", id); + nih_trace!("Host tried to query unknown extension {:?}", id); ptr::null() } }