Last active
September 2, 2019 06:24
-
-
Save haldarmahesh/9d79614810afbb7e19b1cec88ed12a1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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