Skip to content

Commit

Permalink
fix: hyperledger-cacti#1702: Extend generic exception stack handling
Browse files Browse the repository at this point in the history
Extend the generic exception stack handling functionality to also
analyze / process custom exceptions

Closes: hyperledger-cacti#1702
Signed-off-by: Michael Courtin <michael.courtin@accenture.com>
  • Loading branch information
m-courtin committed Jan 13, 2022
1 parent 0707950 commit b9b5c10
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions packages/cactus-common/src/main/typescript/logging/log-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ import { RuntimeError } from "run-time-error";
export class LogHelper {
public static getExceptionStack(exception: unknown): string {
// handle unknown exception input
const defaultStack = "NO_STACK_INFORMATION_INCLUDED_IN_EXCEPTION";
const fallbackStack = "NO_STACK_INFORMATION_INCLUDED_IN_EXCEPTION";
const invalidStack = "INVALID_STACK_INFORMATION";
let stack = defaultStack;
const invalidException = "INVALID_EXCEPTION";
const customExceptionPrefix = "A CUSTOM EXCEPTION WAS THROWN: ";
let stack = fallbackStack;
let exceptionHandled = false;

// 1st need to check that exception is not null or undefined before trying to access the wanted stack information
// otherwise the default fallback stack info will be returned
if (exception) {
if (exception instanceof RuntimeError) {
// handling RuntimeError stack inclusive nested / cascaded stacks
Expand All @@ -31,8 +34,16 @@ export class LogHelper {
invalidStack,
);
}
exceptionHandled = true;
}
}

if (!exceptionHandled) {
// custom exception is of a different type -> need to stringify it
stack =
customExceptionPrefix &&
this.safeJsonStringify(exception, invalidException);
}
}
return stack;
}
Expand Down

0 comments on commit b9b5c10

Please sign in to comment.