private void displayMemoryConsumption()

in src/main/java/org/apache/maven/doxia/linkcheck/DefaultLinkCheck.java [595:603]


    private void displayMemoryConsumption()
    {
        if ( LOG.isDebugEnabled() )
        {
            Runtime r = Runtime.getRuntime();
            LOG.debug( "Memory: " + ( r.totalMemory() - r.freeMemory() ) / MEG + "M/" + r.totalMemory() / MEG
                + "M" );
        }
    }