From 692241905982cb739016cc11cb4f95d5210ee716 Mon Sep 17 00:00:00 2001 From: obdev Date: Tue, 3 Jan 2023 14:42:04 +0000 Subject: [PATCH] remove smart_call log --- deps/oblib/src/common/ob_smart_call.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/deps/oblib/src/common/ob_smart_call.h b/deps/oblib/src/common/ob_smart_call.h index 970d57c0c..f10aff3b4 100644 --- a/deps/oblib/src/common/ob_smart_call.h +++ b/deps/oblib/src/common/ob_smart_call.h @@ -69,7 +69,6 @@ inline int call_with_new_stack(void * arg_, int(*func_) (void*)) { int ret = OB_SUCCESS; #if defined(__x86_64__) || defined(__aarch64__) - OB_LOG(INFO, "smart_call", KCSTRING(lbt())); void *ori_stack_addr = nullptr; size_t ori_stack_size = 0; void *stack_addr = nullptr; @@ -92,7 +91,6 @@ inline int call_with_new_stack(void * arg_, int(*func_) (void*)) lib::g_stack_allocer.dealloc(stack_addr); all_stack_size -= stack_size; } - OB_LOG(INFO, "smart_call finish"); #else ret = func_(arg_); #endif