You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
74
-**Bottom-Up**: Starts from callees and expands to callers, with optional grouping by Namespace or Type.
75
75
-**Go to Source**: Click method names to open source from **Time Order**, **Aggregated**, and **Bottom-Up** when symbols are available.
76
76
-**Analysis Alignment**: Analysis now uses the same bottom-up table model for consistent caller attribution.
77
+
-**🎨 Category Coloring**: The Name column is colored by event category using the active timeline theme — a color chip by default, or a full background tint + colored text when enabled via **Settings → Apex Log Analyzer → colorize Call Tree category names**. ([#734])
77
78
- 📄 **Raw Log Navigation**: Seamless navigation between raw log files and the log analysis. ([#204])
78
79
-**Show in Raw Log**: Right-click timeline or call tree frames → "Show in Log File" to jump to the corresponding line.
79
80
-**Show in Log Analysis**: Click the hover link on raw log lines to navigate back to the log analysis.
@@ -493,6 +494,7 @@ Skipped due to adopting odd numbering for pre releases and even number for relea
Copy file name to clipboardExpand all lines: lana-docs/docs/docs/features/calltree.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,3 +60,11 @@ Debug Only and Type filtering are available in **Time Order** and **Aggregated**
60
60
### Keyboard Navigation
61
61
62
62
The Call Tree can be navigated with the keyboard. The up and down keys will move between rows, the left and right keys will expand and collapse a parent within the tree.
63
+
64
+
### Category Coloring
65
+
66
+
The Name column is colored by each event's category — Apex, Code Unit, System, Automation, DML, SOQL, Callout and Validation — using the colors of the active timeline theme, so the Call Tree and the [Timeline themes](./timeline.md#themes) stay visually consistent.
67
+
68
+
By default a small color chip is shown against each row. To color the full cell instead (background tint and colored text), enable **Settings → Apex Log Analyzer → Colorize Call Tree category names**.
69
+
70
+
Colors follow the active timeline theme and update instantly when you switch themes via **Log: Timeline Theme**.
Copy file name to clipboardExpand all lines: lana-docs/docs/docs/settings.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,3 +54,7 @@ settings.json
54
54
}
55
55
}
56
56
```
57
+
58
+
## Call Tree category coloring
59
+
60
+
The Call Tree colors its Name column by event category using the active timeline theme. A color chip is shown by default; enable **Colorize Call Tree category names** under `preferences -> extensions -> Apex Log Analyzer` to tint the whole cell instead. See [Call Tree → Category Coloring](./features/calltree.md#category-coloring).
Copy file name to clipboardExpand all lines: lana/package.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -254,6 +254,13 @@
254
254
"markdownDescription": "Enable/ disable the legacy timeline. Default is `false`.",
255
255
"order": 2
256
256
},
257
+
"lana.callTree.categoryColorize": {
258
+
"title": "Colorize Call Tree category names",
259
+
"type": "boolean",
260
+
"default": false,
261
+
"markdownDescription": "When enabled, applies a background tint and text color to the Name column in the Call Tree based on the event category, matching the Timeline flame graph colors. When disabled (default), a small color chip is shown instead.",
0 commit comments