We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
withSafeSideEffect
In the below snippet, there's only try...catch logic to convert it to a failed task:
parseq/subprojects/parseq/src/main/java/com/linkedin/parseq/Task.java
Lines 398 to 408 in 74875ed
However, it is hard to add logging on the caller side for this. Thus, the side effect may fail silently without an easy way to debug.
Could we use the LOGGER in this file to log the Throwable before line 407?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the below snippet, there's only try...catch logic to convert it to a failed task:
parseq/subprojects/parseq/src/main/java/com/linkedin/parseq/Task.java
Lines 398 to 408 in 74875ed
However, it is hard to add logging on the caller side for this. Thus, the side effect may fail silently without an easy way to debug.
Could we use the LOGGER in this file to log the Throwable before line 407?
The text was updated successfully, but these errors were encountered: