diff --git a/sflphone-gtk/src/calltree.c b/sflphone-gtk/src/calltree.c
index dd205d3f099a39f380bcec71775097e706393aa0..591f276ca0a91642aaf6cc3b18536017da73983f 100644
--- a/sflphone-gtk/src/calltree.c
+++ b/sflphone-gtk/src/calltree.c
@@ -691,7 +691,6 @@ update_call_tree (calltab_t* tab, call_t * c)
 	}
 	else
 	{
-          g_print("Stuff to be printed  %s  %s \n",call_get_number(c),call_get_name(c));
 	  description = g_markup_printf_escaped("<b>%s</b> <i>%s</i>", 
 	      call_get_number(c),
 	      call_get_name(c)); 
diff --git a/sflphone-gtk/src/dbus.c b/sflphone-gtk/src/dbus.c
index b58b4d667374ec1ca284dda6f251aaa1c64b7ab6..428333e55943631d14c7a46afb0a816554c1da3c 100644
--- a/sflphone-gtk/src/dbus.c
+++ b/sflphone-gtk/src/dbus.c
@@ -66,7 +66,7 @@ curent_selected_codec (DBusGProxy *proxy UNUSED,
                   const gchar* codecName,
                   void * foo  UNUSED )
 {
-  g_print ("Codec decided! %s\n",codecName);
+  g_print ("%s codec decided for call %s\n",codecName,callID);
   sflphone_display_selected_codec (codecName);
 }
 
diff --git a/src/plug-in/audiorecorder/audiorecord.h b/src/plug-in/audiorecorder/audiorecord.h
index 532c96e4bd784dc96dfe31a05bf099f9d1380685..ba1701f0cf3dbdcb2b3504cf9b4a228b8ef1d5fc 100644
--- a/src/plug-in/audiorecorder/audiorecord.h
+++ b/src/plug-in/audiorecorder/audiorecord.h
@@ -26,7 +26,7 @@
 #include <sstream>
 
 #include "plug-in/plugin.h"
-#include "audiodsp.h"
+// #include "audiodsp.h"
 
 // class AudioDSP;
 
@@ -189,11 +189,6 @@ protected:
   std::string savePath_;
 
   std::string call_id_;
-  
-  /**
-   * AudioDSP test (compute RMS value)
-   */
-  AudioDSP dsp;
  
 };