mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-14 17:11:04 +00:00
Fixing error on getCallerFromExisting when invalid error
This commit is contained in:
parent
ce8ecbe8c9
commit
37b00fd772
@ -426,6 +426,7 @@ function getCallerFile() {
|
||||
}
|
||||
|
||||
function getCallerFromExisting(err: Error): { file: string, line: number } {
|
||||
if (!err || !err.stack) return { file: "NOFILE", line: 0 };
|
||||
let lines = err.stack.split("\n");
|
||||
let current = path.basename(__filename);
|
||||
lines.shift();// removing first line
|
||||
|
Loading…
Reference in New Issue
Block a user