summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKelvin Nilsen <kdnilsen@amazon.com>2024-03-03 15:11:42 +0000
committerKelvin Nilsen <kdnilsen@amazon.com>2024-03-03 15:11:42 +0000
commit252638490938bb4a8d6435b165ab8611f26edd5b (patch)
treebe742a38288934a563d02947c9873cb5d8b18d0d
parenta45f976df21b26ad8ef002994f49f3bed4bd9e1b (diff)
Revert redundant change from https://github.com/openjdk/jdk/pull/18083pr/17561
This change was made experimentally in this PR to evaluate whether this would resolve regressions in GHA tests. When present, this PR passed all GHA tests. When absent, it does not.
-rw-r--r--src/hotspot/share/logging/logSelectionList.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hotspot/share/logging/logSelectionList.hpp b/src/hotspot/share/logging/logSelectionList.hpp
index 6bd2c6608bc..de859b878d3 100644
--- a/src/hotspot/share/logging/logSelectionList.hpp
+++ b/src/hotspot/share/logging/logSelectionList.hpp
@@ -37,7 +37,7 @@ class LogTagSet;
// Consists of ordered LogSelections, i.e. "tag1+tag2=level1,tag3*=level2".
class LogSelectionList : public StackObj {
public:
- static const size_t MaxSelections = 320;
+ static const size_t MaxSelections = 256;
private:
friend void LogConfiguration::configure_stdout(LogLevelType, int, ...);