< prev index next >

src/share/vm/logging/logFileOutput.cpp

Print this page

        

@@ -426,5 +426,15 @@
   }
   // Add terminating char
   result[result_len] = '\0';
   return result;
 }
+
+void LogFileOutput::describe(outputStream *out, size_t index) {
+  LogOutput::describe(out, index);
+  out->print(" ");
+
+  out->print("filecount=%u,filesize=" SIZE_FORMAT "%s", _file_count,
+             byte_size_in_proper_unit(_rotate_size),
+             proper_unit_for_byte_size(_rotate_size));
+}
+
< prev index next >