@mcma/core
Advanced tools
Comparing version 0.7.7 to 0.7.8
@@ -253,6 +253,6 @@ export abstract class McmaObject { | ||
function_start(msg: any, ...args: any[]): void; | ||
function_end(msg: any, ...args: any[]): void; | ||
job_start(msg: any, ...args: any[]): void; | ||
job_end(msg: any, ...args: any[]): void; | ||
functionStart(msg: any, ...args: any[]): void; | ||
functionEnd(msg: any, ...args: any[]): void; | ||
jobStart(msg: any, ...args: any[]): void; | ||
jobEnd(msg: any, ...args: any[]): void; | ||
} | ||
@@ -270,6 +270,6 @@ | ||
function_start(msg: any, ...args: any[]): void; | ||
function_end(msg: any, ...args: any[]): void; | ||
job_start(msg: any, ...args: any[]): void; | ||
job_end(msg: any, ...args: any[]): void; | ||
functionStart(msg: any, ...args: any[]): void; | ||
functionEnd(msg: any, ...args: any[]): void; | ||
jobStart(msg: any, ...args: any[]): void; | ||
jobEnd(msg: any, ...args: any[]): void; | ||
} | ||
@@ -276,0 +276,0 @@ |
@@ -64,15 +64,15 @@ const util = require("util"); | ||
function_start(msg, ...args) { | ||
functionStart(msg, ...args) { | ||
this.log(450, "FUNCTION_START", msg, ...args); | ||
} | ||
function_end(msg, ...args) { | ||
functionEnd(msg, ...args) { | ||
this.log(450, "FUNCTION_END", msg, ...args); | ||
} | ||
job_start(msg, ...args) { | ||
jobStart(msg, ...args) { | ||
this.log(400, "JOB_START", msg, ...args); | ||
} | ||
job_end(msg, ...args) { | ||
jobEnd(msg, ...args) { | ||
this.log(400, "JOB_END", msg, ...args); | ||
@@ -79,0 +79,0 @@ } |
{ | ||
"name": "@mcma/core", | ||
"version": "0.7.7", | ||
"version": "0.7.8", | ||
"description": "Node module with type definitions and helper utils for the EBU MCMA framework", | ||
@@ -5,0 +5,0 @@ "engines": { |
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
26250