-
Notifications
You must be signed in to change notification settings - Fork 1
Soql and Design changes #15
New issue
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
Conversation
Hello @Sreshtag Can you plz add screeshots of the 2 soql statemnts in the detailed log viewer |
Hi @charangirijala |
//<!-- SOQLB --> | ||
else if (logTemp.logLineData.type === "SOQLB") { | ||
logTemp.eventClassComb = "slds-line-clamp soqb"; | ||
console.log("Query: ", JSON.stringify(logTemp.logLineData)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Plz comment this line
//<!-- SOQLE --> | ||
else if (logTemp.logLineData.type === "SOQLE") { | ||
logTemp.eventClassComb = "slds-line-clamp soqe"; | ||
console.log("No.of Rows: ", JSON.stringify(logTemp.logLineData)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Plz comment this line
* 1. Use same methods as METHOD_ENTRY | ||
* 2. Process all details and call METHOD_ENTRY methods | ||
*/ | ||
SoqlUtility.processSoqlbegin(line,eventInfo.get(regex)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just pass single parameter line as we only have single regex pattern is not required
/* | ||
* 1. Use same methods as METHOD_EXIT | ||
*/ | ||
SoqlUtility.processSoqlExit(line,eventInfo.get(regex)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just pass single parameter line as we only have single regex pattern is not required
Changes Made
utilityVariables.cls
-> Included the regex forSOQL_EXECUTE_BEGIN
,SOQL_EXECUTE_END
SoqlUtility.cls
-> added condtions to add soql begin and exitLogLineWrapper.js
-> Added condtional styling class SOQLB & SOQLELogLineWrapper.css
-> added styling classSOQLB
&SOQLE
for color in Detailed log viewer@charangirijala
Please review the changes