From fe0680410ba07c5b8fa56bcd0803217c0df7e686 Mon Sep 17 00:00:00 2001 From: Mohsen Rezaei Estabragh <mohsen.rezaei.estabragh@cern.ch> Date: Fri, 18 Sep 2020 17:20:21 +0200 Subject: [PATCH] minor: info message improvement --- Tools/PyJobTransforms/python/trfUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/PyJobTransforms/python/trfUtils.py b/Tools/PyJobTransforms/python/trfUtils.py index 0fc4ca850ffa..1a0d50832e16 100644 --- a/Tools/PyJobTransforms/python/trfUtils.py +++ b/Tools/PyJobTransforms/python/trfUtils.py @@ -1273,7 +1273,7 @@ class analytic(): fitResult = {"slope": slope, "chi2": chi2} if slope: HRslope, unit = self.formatBytes(slope) - msg.info('current memory leak: {0} {1} (using {2} data points, chi2={3})'.format(HRslope, unit, len(x), chi2)) + msg.info('slope of the fitted line: {0} {1} (using {2} data points, chi2={3})'.format(HRslope, unit, len(x), chi2)) else: msg.warning('wrong length of table data, x={0}, y={1} (must be same and length>={2})'.format(x, y, minPoints)) -- GitLab