diff --git a/process/Contact_lib/process.js b/process/Contact_lib/process.js
index e6e06aaa481a96332d7dc3b1ecc23662d2c2de8f..6ba5c64fdb7375d0a0d7dff9579bfb986c5ac9ce 100644
--- a/process/Contact_lib/process.js
+++ b/process/Contact_lib/process.js
@@ -508,15 +508,12 @@ Contact.createWithColumnPreset = function()
  */
 function ContactTitleRenderer(pContact, pOptions)
 {
-    logging.log(JSON.stringify(pOptions, null, "\t"))
     this.contact = pContact;
     if (pOptions !== undefined)//null means null which is "no option"; so check exactly for undefined to check if default option has to be set
         this._options = pOptions;
     else 
         this._options = ContactTitleRenderer.OPTIONS.IncludeOrganisation;
-    
-    logging.log(JSON.stringify(this._options & ContactTitleRenderer.OPTIONS.IncludeOrganisation, null, "\t"))
-    
+        
     //function that renders the contact into a sql expression (e.g. for a subselect)
     this._asSqlFn = function(){
         var maskingUtil = new SqlMaskingUtils();