diff --git a/src/memory_leak_debug.cpp b/src/memory_leak_debug.cpp index f443376..acfcc5a 100644 --- a/src/memory_leak_debug.cpp +++ b/src/memory_leak_debug.cpp @@ -80,8 +80,11 @@ struct TrackedAllocation printf("%-25s %s (line %lu)\n", file_name ? file_name : line.FileName, s, line.LineNumber); - if (!is_grpc && ((strstr(s, "grpc::") == s) || (strstr(s, "grpc_core::") == s) || (strstr(s, "grpc_init") == s))) { - is_grpc = true; + if (!is_grpc) { + is_grpc = (strstr(s, "grpc::") == s) || + (strstr(s, "grpc_core::") == s) || + (strstr(s, "grpc_event_engine::") == s) || + (strstr(s, "grpc_init") == s); } } }