From 892c50cefbdf13af0f4dea867cf1d5eb6c4dd9ef Mon Sep 17 00:00:00 2001 From: thijs snijder <snijder@astron.nl> Date: Fri, 7 May 2021 12:07:42 +0200 Subject: [PATCH] removed unnececcary debug line --- devices/clients/opcua_connection.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devices/clients/opcua_connection.py b/devices/clients/opcua_connection.py index 5d1ada2d1..2fce811b3 100644 --- a/devices/clients/opcua_connection.py +++ b/devices/clients/opcua_connection.py @@ -167,8 +167,7 @@ class OPCUAConnection(CommClient): node_name = str(node.get_browse_name())[len("QualifiedName(2:"):] self.streams.debug_stream("connected OPC ua node {} of type {} to attribute with dimensions: {} x {} ".format(str(node_name)[:len(node_name)-1], str(ua_type)[len("VariantType."):], dim_x, dim_y)) except: - self.streams.debug_stream("connected to node, but couldn't get a name, here is some information though: %s - %s", node, ua_type) - + pass # return the read/write functions return prot_attr.read_function, prot_attr.write_function -- GitLab