This commit is contained in:
Brage 2023-07-24 02:26:02 +02:00
parent a502232e9c
commit 6559b92a3f

View File

@ -24,7 +24,7 @@ class EncodeDaemon(val referenceId: String, val work: EncodeWork, val daemonInte
outputCache.clear() outputCache.clear()
} }
} catch (e: Exception) { } catch (e: Exception) {
logger.error { e.message } //logger.error { e.message }
} }
} }
@ -64,6 +64,7 @@ class EncodeDaemon(val referenceId: String, val work: EncodeWork, val daemonInte
} }
override fun onOutputChanged(line: String) { override fun onOutputChanged(line: String) {
super.onOutputChanged(line) super.onOutputChanged(line)
logger.info { line }
outputCache.add(line) outputCache.add(line)
} }