chore: optimize log in MaskHandler

This commit is contained in:
Frank.R.Wu 2021-12-14 15:36:21 +08:00
parent c6e1324942
commit d3cddb1773

View File

@ -19,8 +19,8 @@ public class MaskHandler implements AnnotationHook {
DesktopEngine desktopEngine = (DesktopEngine) Engine;
ProjectConfig projectConfig = desktopEngine.getProjectConfig();
JsonElement maskConf = projectConfig.getMask(input.getAction());
LOGGER.info("execute maskConf: " + maskConf);
if (null != maskConf) {
LOGGER.debug("execute maskConf: " + maskConf);
String s1 = ret.toString();
//budeijin
//"{\"count\":1}"
@ -41,7 +41,7 @@ public class MaskHandler implements AnnotationHook {
}
return ret;
} catch (Exception e) {
// e.printStackTrace();
// e.printStackTrace();
return ret;
}
}