替换 System.out.println
parent
9e32a22e06
commit
c3aa0b815f
|
@ -2,13 +2,15 @@ package com.ljsd.jieling.db.mongo;
|
|||
|
||||
import com.google.gson.*;
|
||||
import com.ljsd.jieling.util.SysUtil;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.charset.Charset;
|
||||
import java.nio.file.Files;
|
||||
|
||||
public class MongoUtiltest {
|
||||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(MongoUtiltest.class);
|
||||
public static void main(String[] args) {
|
||||
|
||||
try {
|
||||
|
@ -30,7 +32,7 @@ public class MongoUtiltest {
|
|||
StringBuilder stringBuilder2 = new StringBuilder();
|
||||
if (MongoUtil.equill(obj1, obj, stringBuilder,stringBuilder2)) {
|
||||
|
||||
System.out.println("匹配");
|
||||
LOGGER.info("匹配");
|
||||
} else {
|
||||
|
||||
File file3 = new File(SysUtil.getPath("conf/checkout_diffmem__" +dbf3.getName()+ ".txt"));
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
package com.ljsd.jieling.kefu;
|
||||
|
||||
import com.ljsd.jieling.core.Lockeys;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
@ -11,6 +13,7 @@ import java.util.Set;
|
|||
* CreateDate: 2020/6/11 11:48
|
||||
*/
|
||||
public class Cmd_test_lock extends GmAbstract {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(Cmd_test_lock.class);
|
||||
@Override
|
||||
public boolean exec(String[] args) throws Exception {
|
||||
Set<Integer> sendUids = new HashSet<>();
|
||||
|
@ -20,7 +23,7 @@ public class Cmd_test_lock extends GmAbstract {
|
|||
while (i++<10){
|
||||
String name = Thread.currentThread().getName();
|
||||
Thread.currentThread().sleep(1000);
|
||||
System.out.println("name"+name+" = [" + i + "]");
|
||||
LOGGER.info("name=>{}, i=>{}",name, i);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -391,7 +391,7 @@ public class ChampionshipLogic {
|
|||
MailLogic.getInstance().sendMail(user.getId(), title, content, ItemUtil.getMailReward(sChampionshipReward.getSeasonReward()), nowTime, Global.MAIL_EFFECTIVE_TIME);
|
||||
}
|
||||
}catch (Exception e){
|
||||
System.out.println("Exception e = "+"size"+ arenaRankInfo.size()+ e.toString());
|
||||
LOGGER.info("Exception e = "+"size"+ arenaRankInfo.size()+ e.toString());
|
||||
}
|
||||
|
||||
MongoUtil.getLjsdMongoTemplate().lastUpdate();
|
||||
|
|
|
@ -1230,7 +1230,7 @@ public class GuildFightLogic {
|
|||
public static Family.CarDelayProgressIndication carDelayProgressIndication;
|
||||
|
||||
public static void minuteCheckForCarFight() throws Exception {
|
||||
LOGGER.info("车迟斗法progress={}",carProgress);
|
||||
LOGGER.info("minuteCheckForCarFight 车迟斗法progress={}",carProgress);
|
||||
int carProgressTmp =carProgress;
|
||||
int id =1;
|
||||
|
||||
|
@ -1288,7 +1288,7 @@ public class GuildFightLogic {
|
|||
}else{
|
||||
carProgressTmp = -1;
|
||||
}
|
||||
System.out.println("当前状态"+carProgressTmp);
|
||||
LOGGER.info("minuteCheckForCarFight 当前状态=>{}", carProgressTmp);
|
||||
if(carProgressTmp!=carProgress){
|
||||
int battleStartTime = 0;
|
||||
int grapStartTime = 0;
|
||||
|
@ -1318,7 +1318,7 @@ public class GuildFightLogic {
|
|||
|
||||
public static void sendAllProgressUpdate(){
|
||||
//向全服玩家广播进度变更信息
|
||||
System.out.println("状态更改发送推送");
|
||||
LOGGER.info("sendAllProgressUpdate 状态更改发送推送");
|
||||
for(ISession session : OnlineUserManager.sessionMap.values()){
|
||||
MessageUtil.sendIndicationMessage(session,1, MessageTypeProto.MessageType.CAR_DELAY_PROGRESS_INDICATION_VALUE,carDelayProgressIndication,true);
|
||||
}
|
||||
|
|
|
@ -406,7 +406,7 @@ public class HeroLogic{
|
|||
for(int mustId:mustSet){
|
||||
maxId = mustId>maxId?mustId:maxId;
|
||||
}
|
||||
System.out.println("触发必出"+maxId);
|
||||
LOGGER.info("randomOne uid=>{} 触发必出=>{}", user.getId(), maxId);
|
||||
SLotterySpecialConfig onConfig = null;
|
||||
for(SLotterySpecialConfig everyConfig:specialConfigs){
|
||||
if(everyConfig.getDifferentType()!=maxId){
|
||||
|
|
|
@ -67,9 +67,6 @@ public class SExchangeRate implements BaseConfig {
|
|||
|
||||
|
||||
}
|
||||
|
||||
|
||||
System.out.println("");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -126,7 +126,7 @@ public class NettyTCPClientHandler extends SimpleChannelInboundHandler<Object> {
|
|||
}
|
||||
|
||||
|
||||
System.out.println("back hartbeat id : "+msgId);
|
||||
LOGGER.info("channelRead0 back hartbeat id : {}", msgId);
|
||||
|
||||
//System.out.println(JsonFormat.printToString());
|
||||
|
||||
|
|
Loading…
Reference in New Issue