Switch to debug log level for not deleting job

The spam caused by jjb not doing anything with a job is not
generally interesting so switch it to a DEBUG level logger.

Change-Id: I0c5277612c8db3a11a1e44d4855b4a51226a8f2c
Signed-off-by: Thanh Ha <zxiiro@gmail.com>
This commit is contained in:
Thanh Ha 2019-11-22 10:05:51 -05:00
parent fa688582a6
commit 67dc0087a7
No known key found for this signature in database
GPG Key ID: 5783F720616E3180
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class JenkinsManager(object):
self.delete_job(job["fullname"])
deleted_jobs += 1
else:
logger.info(
logger.debug(
"Not deleting unmanaged jenkins job %s", job["fullname"]
)
else: