mftsccs-browser 2.1.76-beta → 2.1.77-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -36,10 +36,10 @@ export declare class Logger {
|
|
|
36
36
|
* Updates log data with execution details.
|
|
37
37
|
* @param logData The log data object to be updated.
|
|
38
38
|
*/
|
|
39
|
-
static logUpdate(logData: LogData):
|
|
40
|
-
static logfunction(myFunction: string, ...args: any[]): void;
|
|
39
|
+
static logUpdate(logData: LogData): {} | undefined;
|
|
40
|
+
static logfunction(myFunction: string, ...args: any[]): void | {};
|
|
41
41
|
static logError(startTime: number, userId: string | number, operationType?: "read" | "create" | "update" | "delete" | "search", requestFrom?: string, requestIP?: string, responseStatus?: number, responseData?: any, functionName?: string, functionParameters?: any[], userAgent?: string, conceptsUsed?: string[]): void;
|
|
42
|
-
static logApplication(
|
|
42
|
+
static logApplication(level: string, message: string, data?: any): void;
|
|
43
43
|
/**
|
|
44
44
|
* Helper method to send logs to the server.
|
|
45
45
|
*/
|