try out instead of err output

This commit is contained in:
Julian Dolby 2018-10-19 22:31:10 -04:00
parent a1649be85b
commit 8381141e54
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class KawaCallGraphTest extends DynamicCallGraphTestBase {
private void noteElapsedTime() {
long now = System.currentTimeMillis();
if (now - time >= 120000) {
System.err.println("worked " + (now - time));
System.out.println("worked " + (now - time));
time = now;
}
}