specify job count return logs, move to debug level

This commit is contained in:
Christoph Kluge
2026-01-15 10:11:31 +01:00
parent e5c620ca20
commit 3b7fc44ce9
2 changed files with 3 additions and 3 deletions

View File

@@ -154,7 +154,7 @@ func (r *JobRepository) GetJobList(limit int, offset int) ([]int64, error) {
jl = append(jl, id)
}
cclog.Infof("Return job count %d", len(jl))
cclog.Debugf("JobRepository.GetJobList(): Return job count %d", len(jl))
return jl, nil
}