Removing temporary debug logging (#2509)

* Adding further console logging but also fixed lines with JSON.stringify(error)

* Added retry mechanism for GETs for armRequest workflow

* Moved stringifyError into its own file as it was causing strict compile issues in ErrorHandlingUtils

* Removing temporary debug logging

* Undoing eslint change as well
This commit is contained in:
vchske
2026-06-09 11:14:17 -07:00
committed by GitHub
parent df87b40584
commit 4f9a987d28
6 changed files with 19 additions and 66 deletions
-1
View File
@@ -21,7 +21,6 @@ export const handleError = (
consoleErrorPrefix?: string,
options?: HandleErrorOptions,
): void => {
console.log("{{cdbp}} in handleError(): raw error: " + stringifyError(error)); //CTODO in case a stray error happens
const errorMessage = getErrorMessage(error);
const errorCode = error instanceof ARMError ? error.code : undefined;