From 887269a829162241895aa3d9ec2e7a8c78d09cf9 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Mon, 2 May 2022 12:13:25 +0200
Subject: [PATCH] L2SS-769: Reduce log spam if large attributes are given a
 default value

---
 .../tangostationcontrol/devices/lofar_device.py                | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tangostationcontrol/tangostationcontrol/devices/lofar_device.py b/tangostationcontrol/tangostationcontrol/devices/lofar_device.py
index 9c85266d4..3fa662c01 100644
--- a/tangostationcontrol/tangostationcontrol/devices/lofar_device.py
+++ b/tangostationcontrol/tangostationcontrol/devices/lofar_device.py
@@ -17,6 +17,7 @@ from tango import AttrWriteType, DevState, DebugIt, Attribute, DeviceProxy, Attr
 import time
 import math
 import numpy
+import textwrap
 
 # Additional import
 from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper
@@ -278,7 +279,7 @@ class lofar_device(Device, metaclass=DeviceMeta):
                 default_value = getattr(self, f"{name}_default")
 
                 # set the attribute to the configured default
-                logger.debug(f"Setting attribute {name} to {default_value if len(str(default_value)) < 100 else (default_value[:100] + '...')}")
+                logger.debug(textwrap.shorten(f"Setting attribute {name} to {default_value}", 150))
                 self.proxy.write_attribute(name, default_value)
             except Exception as e:
                 # log which attribute we're addressing
-- 
GitLab