Reenable loggin and revert printLog to info

This commit is contained in:
StartForKiller 2023-01-24 19:52:08 +01:00
parent 354b009bdd
commit 524ab891e4
No known key found for this signature in database
GPG Key ID: CE5EA6FC54AAB4F0

View File

@ -450,9 +450,9 @@ public class ScriptLib {
private void printLog(String source, String msg){
var currentGroup = this.currentGroup.getIfExists();
if(currentGroup!=null) {
logger.debug("[LUA] {} {} {}", source, currentGroup.id, msg);
logger.info("[LUA] {} {} {}", source, currentGroup.id, msg);
} else {
logger.debug("[LUA] {} {}", source, msg);
logger.info("[LUA] {} {}", source, msg);
}
}
@ -849,7 +849,7 @@ public class ScriptLib {
return 0;
}
public int RefreshHuntingClueGroup(){
//logger.warn("[LUA] Call unimplemented RefreshHuntingClueGroup"); //TODO: Much many calls o this garbages the log
logger.warn("[LUA] Call unimplemented RefreshHuntingClueGroup"); //TODO: Much many calls o this garbages the log
//TODO implement
return 0;
}