From 85c6b06674a5e8c2b509b2e7c6b8d228381984b3 Mon Sep 17 00:00:00 2001 From: aoshiguchen <1052045476@qq.com> Date: Mon, 11 Jul 2022 11:45:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E8=B0=83=E6=95=B4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/fun/asgc/neutrino/core/bean/BeanWrapper.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/BeanWrapper.java b/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/BeanWrapper.java index 640f3a41..84a280dc 100644 --- a/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/BeanWrapper.java +++ b/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/BeanWrapper.java @@ -68,7 +68,7 @@ public class BeanWrapper implements LifeCycle { return; } this.setStatus(BeanStatus.INIT); - log.info("Bean[type:{} name:{}]初始化...", getType().getName(), getName()); + log.debug("Bean[type:{} name:{}]初始化...", getType().getName(), getName()); isInit = true; Set methods = ReflectUtil.getMethods(type); @@ -135,6 +135,7 @@ public class BeanWrapper implements LifeCycle { } this.setStatus(BeanStatus.RUNNING); if (this.instance instanceof ApplicationRunner) { + log.debug("Bean[type:{} name:{}]运行...", getType().getName(), getName()); ((ApplicationRunner)this.instance).run(args); } }