Skip to content

Commit 02c1bb7

Browse files
committed
Disable checkpoint logging
1 parent 4b20580 commit 02c1bb7

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/kotlin/be/ugent/topl/mio/debugger/Debugger.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,11 @@ open class Debugger(private val connection: Connection, start: Boolean = true, p
239239
}
240240
}
241241

242+
private val checkpointLogging = false
242243
fun printCheckpoints(binaryInfo: WasmInfo? = null) {
244+
if (!checkpointLogging)
245+
return
246+
243247
println("Checkpoints:")
244248
for (checkpoint in checkpoints) {
245249
if (checkpoint == null) {

0 commit comments

Comments
 (0)