Commit e91b5eaa by 宋毅

tj

parent e7a7dcb9
...@@ -8,11 +8,11 @@ class CtlBase { ...@@ -8,11 +8,11 @@ class CtlBase {
this.execClient = system.getObject("util.execClient"); this.execClient = system.getObject("util.execClient");
this.logUrl = settings.channelApiUrl() + "/action/opLog"; this.logUrl = settings.channelApiUrl() + "/action/opLog";
} }
error(param, token) { async error(param, token) {
var tmp = await this.execClient.execPostTK(param, this.logUrl + "/error", token); this.execClient.execPostTK(param, this.logUrl + "/error", token);
} }
info(param, token) { async info(param, token) {
var tmp = await this.execClient.execPostTK(param, this.logUrl + "/info", token); this.execClient.execPostTK(param, this.logUrl + "/info", token);
} }
getUUID() { getUUID() {
var uuid = uuidv4(); 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