From c2862e8a2bcce235d2b261436c1b51f767cc9ab5 Mon Sep 17 00:00:00 2001
From: Jan Rinze Peterzon <peterzon@astron.nl>
Date: Wed, 21 Oct 2015 16:05:53 +0000
Subject: [PATCH] Task #8571: Remove debug messages and changed t_RPC to use
 topic exchange.

---
 LCS/Messaging/python/messaging/messages.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/LCS/Messaging/python/messaging/messages.py b/LCS/Messaging/python/messaging/messages.py
index f1a7019f527..9dcf7131286 100644
--- a/LCS/Messaging/python/messaging/messages.py
+++ b/LCS/Messaging/python/messaging/messages.py
@@ -192,14 +192,11 @@ class LofarMessage(object):
 
         :raises: AttributeError
         """
-        print("Trying to set attribute %s with %s" %(name,value))
         if name != 'properties':
             if name in _QPID_MESSAGE_FIELDS:
                 self.__dict__['_qpid_msg'].__dict__[name] = value
-                print("set in native QPID")
             else:
                 self.__dict__['_qpid_msg'].__dict__['properties'][name] = value
-                print("set in properties map")
         else:
             raise AttributeError("%r object has no attribute %r" %
                                  (self.__class__.__name__, name))
-- 
GitLab