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 6c204c5 commit b3b60aaCopy full SHA for b3b60aa
addon/log.js
@@ -699,7 +699,8 @@ class CodeUnitLogNode extends LogNode {
699
super(splittedLine, logParser, node, "CODE_UNIT_FINISHED");
700
this.title = "code unit";
701
if (splittedLine.length > 4 && splittedLine[4].endsWith(")")){
702
- this.apexClass = splittedLine[4].substring(0, splittedLine[4].lastIndexOf("."));
+ this.apexClass = splittedLine[4].substring(0, splittedLine[4].indexOf("("));
703
+ this.apexClass = this.apexClass.substring(0, this.apexClass.lastIndexOf("."));
704
logParser.addApexClass(this.apexClass);
705
this.logStartLine = logParser.index;
706
}
0 commit comments