From 9dc55386921d1c0df078d91d43a7554e1d693482 Mon Sep 17 00:00:00 2001 From: Megvii Engine Team Date: Wed, 14 Oct 2020 18:01:06 +0800 Subject: [PATCH] fix(mgb): update fastrun log level when not set timeout GitOrigin-RevId: d33cfd543d5bb4d1da4fd114fc4ef54eff7bafbe --- src/core/impl/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/impl/system.cpp b/src/core/impl/system.cpp index 7e3cbe440..d970e9cf4 100644 --- a/src/core/impl/system.cpp +++ b/src/core/impl/system.cpp @@ -488,7 +488,7 @@ class TimedFuncInvokerImpl final: public TimedFuncInvoker { return iter->second.direct_call(param); if (!m_fork_exec_impl) { - mgb_log_error("timeout is set, but no fork_exec_impl not given; " + mgb_log_warn("timeout is set, but no fork_exec_impl not given; " "timeout would be ignored"); return iter->second.direct_call(param); } -- GitLab