Skip to content
Snippets Groups Projects
Commit 1b888163 authored by felmer's avatar felmer
Browse files

SE-191 remove memory usage print statements

SVN: 14423
parent 23b09e80
No related branches found
No related tags found
No related merge requests found
......@@ -69,10 +69,6 @@ public abstract class AbstractServerLogger implements IServer
protected final void logAccess(final String sessionToken, final String commandName)
{
long freeMemory = Runtime.getRuntime().freeMemory();
long totalMemory = Runtime.getRuntime().totalMemory();
System.out.println("MEMORY: " + (totalMemory - freeMemory) / 1024 / 1024 + " of " + totalMemory
/ 1024 / 1024 + " used " + commandName);
logAccess(sessionToken, commandName, "");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment