mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
8145092: Use Unified Logging for the GC logging
JEP-271. VM changes contributed by brutisso, test changes contributed by david. Co-authored-by: David Lindholm <david.lindholm@oralce.com> Reviewed-by: sjohanss, david, brutisso
This commit is contained in:
parent
581eb19018
commit
ffeb0bdad0
200 changed files with 3331 additions and 6147 deletions
|
@ -32,7 +32,6 @@ class WorkerDataArray : public CHeapObj<mtGC> {
|
|||
uint _length;
|
||||
const char* _title;
|
||||
bool _print_sum;
|
||||
int _log_level;
|
||||
uint _indent_level;
|
||||
bool _enabled;
|
||||
|
||||
|
@ -46,7 +45,6 @@ class WorkerDataArray : public CHeapObj<mtGC> {
|
|||
WorkerDataArray(uint length,
|
||||
const char* title,
|
||||
bool print_sum,
|
||||
int log_level,
|
||||
uint indent_level);
|
||||
|
||||
~WorkerDataArray();
|
||||
|
@ -80,10 +78,6 @@ class WorkerDataArray : public CHeapObj<mtGC> {
|
|||
return _print_sum;
|
||||
}
|
||||
|
||||
int log_level() const {
|
||||
return _log_level;
|
||||
}
|
||||
|
||||
void clear();
|
||||
void set_enabled(bool enabled) {
|
||||
_enabled = enabled;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue