Updated decoder

This commit is contained in:
Brage 2023-07-30 03:23:43 +02:00
parent e368b8d255
commit 4e4ae19d60

View File

@ -154,7 +154,7 @@ class RunnerCoordinator(private var maxConcurrentJobs: Int = 1) {
}
override fun onProgress(referenceId: String, work: EncodeWork, progress: Progress) {
logger.info { "Work progress for $referenceId with WorkId ${work.workId} @ ${work.outFile}: Progress: ${Gson().toJson(progress)}" }
logger.debug { "Work progress for $referenceId with WorkId ${work.workId} @ ${work.outFile}: Progress: ${Gson().toJson(progress)}" }
progressMap.put(work.workId, progress)
}