mirror of
https://gitee.com/BDWare/common
synced 2025-01-09 17:34:16 +00:00
update logger
This commit is contained in:
parent
f6c2e9e445
commit
74fcf39094
16
build.gradle
16
build.gradle
@ -131,18 +131,18 @@ publishing {
|
||||
maven {
|
||||
name 'bdwareSnapshotRepository'
|
||||
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
||||
// credentials {
|
||||
// username = "${NEXUS_USERNAME}"
|
||||
// password = "${NEXUS_PASSWORD}"
|
||||
// }
|
||||
credentials {
|
||||
username = "${NEXUS_USERNAME}"
|
||||
password = "${NEXUS_PASSWORD}"
|
||||
}
|
||||
}
|
||||
maven {
|
||||
name 'bdwareRepository'
|
||||
url 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
|
||||
// credentials {
|
||||
// username = "${NEXUS_USERNAME}"
|
||||
// password = "${NEXUS_PASSWORD}"
|
||||
// }
|
||||
credentials {
|
||||
username = "${NEXUS_USERNAME}"
|
||||
password = "${NEXUS_PASSWORD}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,14 @@
|
||||
package org.bdware.sc.bean;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.bdware.doip.codec.operations.BasicOperations;
|
||||
import org.bdware.sc.node.AnnotationNode;
|
||||
import org.bdware.sc.node.ContractNode;
|
||||
import org.bdware.sc.util.JsonUtil;
|
||||
|
||||
public class DoipOperationInfo {
|
||||
static Logger LOGGER = LogManager.getLogger(DoipOperationInfo.class);
|
||||
public String operationType;
|
||||
public String operationName;
|
||||
public BasicOperations operation;
|
||||
@ -32,7 +35,7 @@ public class DoipOperationInfo {
|
||||
info.operationName = info.operation.getName();
|
||||
}
|
||||
}
|
||||
System.out.println("[DoipOperationInfo] annotationNode:" + JsonUtil.toJson(annotationNode));
|
||||
LOGGER.info("[DoipOperationInfo] annotationNode:" + JsonUtil.toJson(annotationNode));
|
||||
return info;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user