From ba61b79141ec394c641a9208375f00300009eb4a Mon Sep 17 00:00:00 2001 From: Simon Fayer Date: Tue, 28 Nov 2023 14:38:11 +0000 Subject: [PATCH] Fix: lower log level for printing version in submitJob --- src/DIRAC/Interfaces/API/Dirac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DIRAC/Interfaces/API/Dirac.py b/src/DIRAC/Interfaces/API/Dirac.py index a0b2d061665..baec3af00aa 100755 --- a/src/DIRAC/Interfaces/API/Dirac.py +++ b/src/DIRAC/Interfaces/API/Dirac.py @@ -2534,7 +2534,7 @@ def __getJDLParameters(self, jdl): ############################################################################# def __printInfo(self): """Internal function to print the DIRAC API version and related information.""" - self.log.info(f"<====={self.diracInfo}=====>") + self.log.verbose(f"<====={self.diracInfo}=====>") self.log.verbose(f"DIRAC is running at {DIRAC.siteName()} in setup {self.setup}") def getConfigurationValue(self, option, default):