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 7ece9d5 commit a261604Copy full SHA for a261604
exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/compiler/DevInsCompiler.kt
@@ -372,7 +372,10 @@ class DevInsCompiler(
372
} catch (e: Exception) {
373
logger<DevInsCompiler>().warn(e)
374
val text = runReadAction { used.text }
375
- val error = "Error executing toolchain function: $text + $prop"
+ val nextCode = lookupNextCode(used)?.codeText()
376
+ val error = "Error executing toolchain function: $text:$prop, $nextCode\n" +
377
+ "Error: ${e.message}\n" +
378
+ "Please check the command and try again."
379
AutoDevNotifications.notify(myProject, error)
380
error
381
}
0 commit comments