Skip to content

Commit

Permalink
Use system out
Browse files Browse the repository at this point in the history
  • Loading branch information
phuonghuynh committed Aug 12, 2021
1 parent 5081c9e commit 2275a5b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,11 @@ public void logRuntime() {
logger.info("heapFreeSize= {}", heapFreeSize);
logger.info("totalMemory= {}", runtime.totalMemory());
logger.info("availableProcessors= {}", runtime.availableProcessors());

System.out.println("heapSize= " + heapSize);
System.out.println("heapMaxSize= " + heapMaxSize);
System.out.println("heapFreeSize= " + heapFreeSize);
System.out.println("totalMemory= " + runtime.totalMemory());
System.out.println("availableProcessors= " + runtime.availableProcessors());
}
}

0 comments on commit 2275a5b

Please sign in to comment.