We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a2bfac commit af54ecbCopy full SHA for af54ecb
common/src/main/kotlin/spp/jetbrains/ScopeExtensions.kt
@@ -57,7 +57,12 @@ object ScopeExtensions {
57
): Deferred<*> {
58
return GlobalScope.async {
59
safeExecute {
60
- action()
+ try {
61
+ action()
62
+ } catch (ignored: CancellationException) {
63
+ } catch (throwable: Throwable) {
64
+ log.error(throwable)
65
+ }
66
}
67
68
0 commit comments