From 41cc6d226c9dd68dc8ef541040c2ca732e4bdc58 Mon Sep 17 00:00:00 2001 From: Cloud Wu Date: Mon, 25 Jan 2021 10:47:06 +0800 Subject: [PATCH] remove debug print --- lualib/skynet/require.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lualib/skynet/require.lua b/lualib/skynet/require.lua index 52f33a74..b4ec9dd8 100644 --- a/lualib/skynet/require.lua +++ b/lualib/skynet/require.lua @@ -46,10 +46,8 @@ do -- Module is in the init process (require the same mod at the same time in different coroutines) , waiting. local skynet = require "skynet" loading_queue[#loading_queue+1] = co - print ("Waiting " .. name) skynet.wait(co) local m = loaded[name] - print ("Waiting OK : " .. tostring(m)) if m == nil then error(string.format("require %s failed", name)) end