Visualize the complete Apex method call hierarchy from your Salesforce debug log. Understand exactly what ran, in what order, and how long each method took.
What you can see:
Full execution tree showing parent and child method calls
Class name and method name for every call
Execution time in milliseconds for each method
Log line number for quick reference
DML operations highlighted directly on the method card
SOQL queries flagged inline
Execution context showing which trigger or process initiated the call
Collapse and expand branches to focus on specific parts of the flow
Narrow down the execution tree to only the classes and methods you care about. Save and export your filters to reuse them across multiple log files.
Click any method card to open the source code side by side with the execution data. See exactly which lines ran and track variable values through the execution.
Queries
See every SOQL query that ran during your Salesforce transaction in one clean list.
What you can see:
Full SOQL query text for every query that executed
Number of rows returned by each query
Aggregated view showing duplicate queries that ran multiple times
Log line number so you can cross reference with the raw log
Total query count for the entire transaction
Why it matters:
SOQL queries are one of the most common causes of Salesforce governor limit exceptions. The Queries tab helps you instantly spot:
Queries inside loops — the most common performance mistake in Apex
Duplicate queries being fired multiple times unnecessarily
Queries returning too many rows
Total query count approaching the 100 SOQL limit
Understand exactly which Salesforce triggers fired during your transaction and in what order.
Complete trigger execution context showing all objects and events that fired
Trigger name and the DML event that caused it (before insert, after update, etc.)
Visual column layout showing the trigger hierarchy at a glance
Multiple triggers firing in sequence — see the full chain in one view
See every Salesforce record that was touched during your transaction — created, updated, queried or deleted.
What you can see:
Record IDs and record names for every affected record
Field values showing exactly what data was read or modified
Full record history showing how field values changed step by step throughout the execution (Pro)
Why it matters:
Instead of hunting through hundreds of raw log lines to find which records were affected, the Records tab gives you a clean summary in seconds. Quickly identify unexpected records being touched, wrong field values being set, or records being modified by triggers you didn't expect.
Report (Pro)
Get a complete performance summary of your Salesforce transaction in one view — no manual log digging required.
What you can see:
Total execution time broken down by class and method
Most time-consuming methods ranked by duration — instantly spot your bottlenecks
Total SOQL query count with breakdown per class
Total DML operation count with breakdown per class
Why it matters:
Performance issues in Salesforce are often hard to pinpoint. The Report tab gives you an at-a-glance view of where time is being spent, which classes are running the most queries, and whether you are at risk of hitting governor limits — without having to manually read through thousands of log lines.