From e456ed0bd8cd118ab614646855fa97082ea3fd9a Mon Sep 17 00:00:00 2001 From: wangyuan Date: Sat, 10 Aug 2019 11:57:18 +0800 Subject: [PATCH] log --- .../src/main/java/com/ljsd/jieling/logic/hero/HeroLogic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/hero/HeroLogic.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/hero/HeroLogic.java index ac0ca0063..43fb3ba2f 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/hero/HeroLogic.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/hero/HeroLogic.java @@ -1114,7 +1114,7 @@ public class HeroLogic { float score = sPropertyConfig.getScore(); result += propertyValue*score; - LOGGER.info("the value is ={},propertyValue={},score={},result ={},the value={}",propertyValue*score,propertyValue,score,result,propertyValue*score); + LOGGER.info("the propertyId={} the value is ={},propertyValue={},score={},result ={},the value={}",propertyId,propertyValue*score,propertyValue,score,result,propertyValue*score); } return (int)result; }