Skip to content

Commit

Permalink
gc: better logging
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5578 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
borg-0300 committed Feb 5, 2009
1 parent b1f9c00 commit b19bc61
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions source/de/anomic/kelondro/util/MemoryControl.java
Expand Up @@ -25,6 +25,7 @@

package de.anomic.kelondro.util;

import de.anomic.tools.Formatter;

/**
* Use this to get information about memory usage or try to free some memory
Expand All @@ -47,12 +48,17 @@ public class MemoryControl {
public final synchronized static void gc(final int last, final String info) { // thq
final long elapsed = System.currentTimeMillis() - lastGC;
if (elapsed > last) {
final long free = free();
final long before = free();
//System.out.println("vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv");
final long start = System.currentTimeMillis();
System.gc();
//System.out.println("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ if you see this many times please report to forum");
lastGC = System.currentTimeMillis();
if (log.isFine()) log.logInfo("[gc] before: " + free + ", after: " + free() + ", call: " + info);
final long after = free();
if (log.isFine()) log.logInfo("[gc] before: " + Formatter.bytesToString(before) +
", after: " + Formatter.bytesToString(after) +
", freed: " + Formatter.bytesToString(after - before) +
", rt: " + (lastGC - start) + " ms, call: " + info);
} else if (log.isFine()) {
if (log.isFinest()) log.logFinest("[gc] no execute, last run: " + (elapsed / 1000) + " seconds ago, call: " + info);
}
Expand Down Expand Up @@ -173,7 +179,7 @@ public static boolean request(final long size, final boolean force) {
public static long used() {
return total() - free();
}

/**
* main
* @param args
Expand Down

0 comments on commit b19bc61

Please sign in to comment.