From 31e3a6fc69aea5b5af34d86783866d113f9169c3 Mon Sep 17 00:00:00 2001 From: David Garcia Quintas Date: Wed, 29 Apr 2015 16:36:25 -0700 Subject: [PATCH] Removed redundant if from basic_timers.c --- src/core/profiling/basic_timers.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/profiling/basic_timers.c b/src/core/profiling/basic_timers.c index 8dd944cd366..d89bba7b878 100644 --- a/src/core/profiling/basic_timers.c +++ b/src/core/profiling/basic_timers.c @@ -132,9 +132,7 @@ static void grpc_timers_log_add(grpc_timers_log* log, int tag, void* id, /* Latency profiler API implementation. */ void grpc_timer_add_mark(int tag, void* id, const char* file, int line) { - if (tag <= GRPC_PTAG_IGNORE_THRESHOLD) { - grpc_timers_log_add(grpc_timers_log_global, tag, id, file, line); - } + grpc_timers_log_add(grpc_timers_log_global, tag, id, file, line); } void grpc_timer_begin(int tag, void* id, const char *file, int line) {}