From d302aadc40597e2e8325af7b0ea89649ac8f7e56 Mon Sep 17 00:00:00 2001 From: PalNilsson Date: Tue, 26 Nov 2024 10:40:47 +0100 Subject: [PATCH] Updated log message --- PILOTVERSION | 2 +- pilot/util/constants.py | 2 +- pilot/util/monitoring.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PILOTVERSION b/PILOTVERSION index a1c45371..397bca28 100644 --- a/PILOTVERSION +++ b/PILOTVERSION @@ -1 +1 @@ -3.9.2.33 \ No newline at end of file +3.9.2.34 \ No newline at end of file diff --git a/pilot/util/constants.py b/pilot/util/constants.py index e1af55a8..6959dafa 100644 --- a/pilot/util/constants.py +++ b/pilot/util/constants.py @@ -28,7 +28,7 @@ RELEASE = '3' # released number should be fixed at 3 for Pilot 3 VERSION = '9' # version number is '1' for first release, '0' until then, increased for bigger updates REVISION = '2' # revision number should be reset to '0' for every new version release, increased for small updates -BUILD = '33' # build number should be reset to '1' for every new development cycle +BUILD = '34' # build number should be reset to '1' for every new development cycle SUCCESS = 0 FAILURE = 1 diff --git a/pilot/util/monitoring.py b/pilot/util/monitoring.py index 38db1602..8471904b 100644 --- a/pilot/util/monitoring.py +++ b/pilot/util/monitoring.py @@ -200,8 +200,8 @@ def set_cpu_consumption_time(job: JobData) -> tuple[int, str]: f'CPU consumption time increased by a factor of {increase_factor} (over the limit of {factor})') logger.warning(f"will not consider the new value: {_cpuconsumptiontime}") else: - logger.debug( - f'CPU consumption time increased by a factor of {increase_factor} (below the limit of {factor})') + logger.info( + f'CPU consumption time changed by a factor of {increase_factor} (below the limit of {factor})') # make sure that /proc/self/statm still exists, otherwise the job is no longer using CPU, ie discard the info if check_proc_access():