From f28601db5dcbb567a167310b767cb168d257f94c Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 2 Dec 2012 22:09:28 +0100 Subject: [PATCH] RemoteVstPlugin: less verbose debug message --- plugins/vst_base/RemoteVstPlugin.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/vst_base/RemoteVstPlugin.cpp b/plugins/vst_base/RemoteVstPlugin.cpp index 855ffc9dc..f48d67bf1 100644 --- a/plugins/vst_base/RemoteVstPlugin.cpp +++ b/plugins/vst_base/RemoteVstPlugin.cpp @@ -637,10 +637,7 @@ bool RemoteVstPlugin::load( const std::string & _plugin_file ) if( m_plugin->magic != kEffectMagic ) { - char buf[256]; - sprintf( buf, "%s is not a VST plugin\n", - _plugin_file.c_str() ); - debugMessage( buf ); + debugMessage( "File is not a VST plugin\n" ); return false; }