*/
private void command_classFileSize (boolean includeStatic, boolean includeDynamic) {
if (getMachineType() == MachineType.LECC) {
if (includeDynamic) {
LECCMachineStatistics stats = (LECCMachineStatistics)getWorkspaceManager().getMachineStatistics();
iceLogger.log(Level.INFO, "Total class file size (dynamically loaded): " + stats.getNClassBytesLoaded() + " bytes");
iceLogger.log(Level.INFO, "Total class file count (dynamically loaded): " + stats.getNClassesLoaded() + " classes");
}
if (LECCMachineConfiguration.isLeccRuntimeStatic() && includeStatic) {
// Try to determine the total size of the generated class files on disk.
SizeAndCount sizeAndCount = calcRepositorySize();