Commit e91b5eaa by 宋毅

tj

parent e7a7dcb9
......@@ -8,11 +8,11 @@ class CtlBase {
this.execClient = system.getObject("util.execClient");
this.logUrl = settings.channelApiUrl() + "/action/opLog";
}
error(param, token) {
var tmp = await this.execClient.execPostTK(param, this.logUrl + "/error", token);
async error(param, token) {
this.execClient.execPostTK(param, this.logUrl + "/error", token);
}
info(param, token) {
var tmp = await this.execClient.execPostTK(param, this.logUrl + "/info", token);
async info(param, token) {
this.execClient.execPostTK(param, this.logUrl + "/info", token);
}
getUUID() {
var uuid = uuidv4();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment