badmfck-api-server 1.3.9 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -43,7 +43,7 @@ async function Initializer(services) {
43
43
  exports.Initializer = Initializer;
44
44
  class APIService extends BaseService_1.BaseService {
45
45
  static nextLogID = 0;
46
- version = "1.3.9";
46
+ version = "1.4.0";
47
47
  options;
48
48
  netLog = [];
49
49
  constructor(options) {
@@ -1,14 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.BaseService = void 0;
4
- const LogService_1 = require("./LogService");
5
4
  class BaseService {
6
5
  name;
7
6
  constructor(name) {
8
7
  this.name = name;
9
8
  }
10
9
  async init() {
11
- (0, LogService_1.logInfo)("Service: " + this.name + " initialized");
10
+ console.log("Service: " + this.name + " initialized");
12
11
  }
13
12
  applicationReady() { }
14
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "badmfck-api-server",
3
- "version": "1.3.9",
3
+ "version": "1.4.0",
4
4
  "description": "Simple API http server based on express",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",