server-socket-framework-jps
Advanced tools
Comparing version 1.1.0-3 to 1.1.0-4
@@ -11,2 +11,3 @@ "use strict"; | ||
const logger = (0, debug_1.default)('job-manager'); | ||
const loggerDetail = (0, debug_1.default)('job-manager-detail'); | ||
class JobManager { | ||
@@ -41,3 +42,3 @@ constructor() { | ||
queueItem.nextRunTime = this.calculateNextExecuteTime(queueItem.config, true); | ||
logger(`Executing job ${queueItem.config.name}, next execution time will be ${(0, moment_1.default)(queueItem.nextRunTime, 'YYYYMMDDHHmm').format('DD/MM/YYYY HH:mm')}`); | ||
loggerDetail(`Executing job ${queueItem.config.name}, next execution time will be ${(0, moment_1.default)(queueItem.nextRunTime, 'YYYYMMDDHHmm').format('DD/MM/YYYY HH:mm')}`); | ||
queueItem.config.job.executeJob((0, uuid_1.v4)(), this.jobCallback); | ||
@@ -44,0 +45,0 @@ } |
{ | ||
"name": "server-socket-framework-jps", | ||
"version": "1.1.0-3", | ||
"version": "1.1.0-4", | ||
"description": "A simple socket framework for persistent chat rooms and data messages", | ||
@@ -11,3 +11,3 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"compile": "tsc", | ||
"build": "tsc", | ||
"compile.watch": "tsc-watch", | ||
@@ -14,0 +14,0 @@ "lint": "eslint --ext js,jsx,tsx,ts --fix src" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78897
1099