We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f863b2 commit 4d650feCopy full SHA for 4d650fe
src/hotspot/share/logging/logOutputList.cpp
@@ -52,6 +52,7 @@ void LogOutputList::wait_until_no_readers() const {
52
}
53
54
void LogOutputList::set_output_level(LogOutput* output, LogLevelType level) {
55
+ assert(output != nullptr, "LogOutput is null");
56
LogOutputNode* node = find(output);
57
if (level == LogLevel::Off && node != nullptr) {
58
remove_output(node);
0 commit comments