Run Results
Public Information
Class loader
Shows the class loader information selected when calling.
Current class
Shows the class information selected when calling.
Current method
Shows the method information selected when calling.
Parameter types
Shows the method parameter information selected when calling.
Normal run
DebugTools provides three ways to view the run results: toString
, json
, and debug
.
toString
Shows the run results of Quick call method
and Groovy script by calling the toString()
method.
Special case
- If there is no return value (Void), then display
Void
- If the return result is Null, then display
NULL
json
Convert the running results of Quick Call Method
and Groovy Script to Json format for display.
Special case
- If there is no return value (Void), then display
{
"result": "Void"
}
- If the return result is Null, then display
{
"result": "Null"
}
debug
Convert the running results of Quick Call Method
and Groovy Script to a style similar to Idea Debug for display.
Quick operation: Right-click under the selected row to wake up the menu
Copy Name
: Copy the Name of the selected row. The following figure copiessettlementBatchNo
.Copy Value
: copy the value of the selected row. The following figure shows2024002
. You can also quickly copy the value by clickingCtrl+C
on the selected row without waking up the menu (same as Idea).
IMPORTANT
When the result is Void or Null, debug mode viewing is not supported
Abnormal Situation
DebugTools provides console
and debug
to view the running results.
console
DebugTools provides log output similar to Idea console, you can view abnormal information, click the blue information to quickly locate the abnormal code location
debug
DebugTools provides log output similar to Idea Debug, which can view exception information and has the same function as normal debug
.