improved debug logging

This commit is contained in:
2022-08-13 10:56:58 +02:00
parent 1db73987fb
commit 7b28db40ce
2 changed files with 2 additions and 1 deletions

View File

@@ -600,7 +600,6 @@ func housekeeping(repo string, march string, wg *sync.WaitGroup) error {
}
}
// TODO: remove queued status from packages that are not eligible
qPackages, err := db.DbPackage.Query().Where(
dbpackage.And(
dbpackage.RepositoryEQ(dbpackage.Repository(repo)),
@@ -635,6 +634,7 @@ func housekeeping(repo string, march string, wg *sync.WaitGroup) error {
}
}
log.Debugf("[HK] all tasks finished")
return nil
}