From 26fb2ac1830079c135c57d87f342b3936707203c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Sandstr=C3=B6m?= Date: Mon, 6 Apr 2020 15:02:44 +0200 Subject: [PATCH] Add linefeed to error messages. --- ecmcPlugin_FFT-loc/ecmcPlugin_FFTApp/src/ecmcFFTWrap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecmcPlugin_FFT-loc/ecmcPlugin_FFTApp/src/ecmcFFTWrap.cpp b/ecmcPlugin_FFT-loc/ecmcPlugin_FFTApp/src/ecmcFFTWrap.cpp index 0b54476..01e5a37 100644 --- a/ecmcPlugin_FFT-loc/ecmcPlugin_FFTApp/src/ecmcFFTWrap.cpp +++ b/ecmcPlugin_FFT-loc/ecmcPlugin_FFTApp/src/ecmcFFTWrap.cpp @@ -34,7 +34,7 @@ int createFFT(char* configStr) { if(fft) { delete fft; } - printf("Exception: %s.",e.what()); + printf("Exception: %s. Plugin will unload.\n",e.what()); return ECMC_PLUGIN_FFT_ERROR_CODE; } @@ -59,7 +59,7 @@ int linkDataToFFTs() { (*pfft)->connectToDataSource(); } catch(std::exception& e) { - printf("Exception: %s.",e.what()); + printf("Exception: %s. Plugin will unload.\n",e.what()); return ECMC_PLUGIN_FFT_ERROR_CODE; } }