diff --git a/src/wrapper/standalone.rs b/src/wrapper/standalone.rs index ca9dc439..eeb10509 100644 --- a/src/wrapper/standalone.rs +++ b/src/wrapper/standalone.rs @@ -2,6 +2,7 @@ //! of relying on a plugin host. This is mostly useful for quickly testing GUI changes. use self::wrapper::{Wrapper, WrapperConfig, WrapperError}; +use super::util::setup_logger; use crate::plugin::Plugin; mod backend; @@ -57,6 +58,8 @@ pub fn nih_export_standalone() -> bool { pub fn nih_export_standalone_with_args>( args: Args, ) -> bool { + setup_logger(); + // TODO: Do something with the arguments // FIXME: The configuration should be set based on the command line arguments @@ -74,7 +77,7 @@ pub fn nih_export_standalone_with_args