import logger from '../logSetup'; | |
processLoan(id: number, userId: number) { | |
try { | |
getLoanDeatilsById() | |
} catch(error) { | |
log.error(`Failed to do getLoanDetails with id ${id} hence throwing error`, error); | |
// good example: provide what failed, and how you are handling. | |
// e.g here on fail I am throwing | |
throw error; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment