File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Src/PRuntimes/PExplicitRuntime/src/main/java/pexplicit/runtime Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -61,8 +61,6 @@ public static void Initialize(int verb) {
61
61
// initialize all loggers and writers
62
62
StatWriter .Initialize ();
63
63
ScratchLogger .Initialize ();
64
- ScheduleWriter .Initialize ();
65
- TextWriter .Initialize ();
66
64
}
67
65
68
66
public static void logInfo (String message ) {
Original file line number Diff line number Diff line change 3
3
import pexplicit .runtime .PExplicitGlobal ;
4
4
import pexplicit .runtime .logger .PExplicitLogger ;
5
5
import pexplicit .runtime .logger .ScheduleWriter ;
6
+ import pexplicit .runtime .logger .TextWriter ;
6
7
import pexplicit .runtime .machine .PMachine ;
7
8
import pexplicit .runtime .machine .PMachineId ;
8
9
import pexplicit .runtime .scheduler .Schedule ;
@@ -21,6 +22,10 @@ public ReplayScheduler(Schedule sch) {
21
22
@ Override
22
23
public void run () throws TimeoutException , InterruptedException {
23
24
PExplicitLogger .logStartReplay ();
25
+
26
+ ScheduleWriter .Initialize ();
27
+ TextWriter .Initialize ();
28
+
24
29
ScheduleWriter .logHeader ();
25
30
26
31
// log run test
You can’t perform that action at this time.
0 commit comments