Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/ucs/debug/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,9 @@ void ucs_log_init()
ucs_open_output_stream(ucs_global_opts.log_file, UCS_LOG_LEVEL_FATAL,
&ucs_log_file, &ucs_log_file_close, &next_token);
}
if (ucs_global_opts.log_component.log_level > UCS_MAX_LOG_LEVEL) {
ucs_warn("UCX log level DEBUG is not supported, highest supported level is INFO");
}
}

void ucs_log_cleanup()
Expand Down