Skip to content

Commit aa728f1

Browse files
committed
OSHMEM: fixes verbosity log level cal
Signed-off-by: Alex Mikheev <[email protected]>
1 parent 63c45e9 commit aa728f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oshmem/util/oshmem_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void oshmem_output_verbose(int level, int output_id, const char* prefix,
2323
char *buff, *str;
2424
int ret = 0;
2525

26-
if (level < opal_output_get_verbosity(output_id)) {
26+
if (level <= opal_output_get_verbosity(output_id)) {
2727
UNREFERENCED_PARAMETER(ret);
2828

2929
va_start(args, format);

0 commit comments

Comments
 (0)