Skip to content

Commit 90ab073

Browse files
committed
Cleaned up logging a bit more
1 parent a378efb commit 90ab073

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/kotlin/be/ugent/topl/mio/concolic/Analyse.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fun process(r: ConcolicAnalysisResult): MultiverseNode {
7878
}
7979

8080
fun processPaths(paths: List<SymbolicValueMapping>, currentTimeStep: Int = 0): MultiverseNode {
81-
println("" + currentTimeStep + " " + paths[0].time_step)
81+
//println("" + currentTimeStep + " " + paths[0].time_step)
8282
var currentNode: MultiverseNode
8383
val primitiveNode = PrimitiveNode(paths[0].primitive, paths[0].arg)
8484
val startNode = if (currentTimeStep != paths[0].time_step) {

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,12 +401,14 @@ open class Debugger(private val connection: Connection, start: Boolean = true, p
401401
}
402402

403403
fun snapshot(): String {
404+
println("Taking snapshot")
404405
send(60)
405406
return messageQueue.waitForResponse {
406407
WOODState.fromLine(it)
407408
}.first
408409
}
409410
fun snapshotFull(): Pair<String, WOODDumpResponse> {
411+
println("Taking snapshot")
410412
send(60)
411413
return messageQueue.waitForResponse {
412414
WOODState.parseSnapshot(it)

0 commit comments

Comments
 (0)