We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e97b95b commit ccc4a5eCopy full SHA for ccc4a5e
2 files changed
system/Debug/Toolbar/Collectors/Database.php
@@ -144,7 +144,7 @@ public function display(): array
144
$traceLine['file'] = str_ireplace(VENDORPATH, 'VENDORPATH/', $traceLine['file']);
145
$traceLine['file'] = str_ireplace(ROOTPATH, 'ROOTPATH/', $traceLine['file']);
146
147
- if (strpos($traceLine['file'], 'APPPATH') === false) {
+ if (strpos($traceLine['file'], 'SYSTEMPATH') !== false) {
148
continue;
149
}
150
$line = empty($line) ? $traceLine : $line;
user_guide_src/source/changelogs/v4.1.6.rst
@@ -14,6 +14,7 @@ BREAKING
14
15
Enhancements
16
============
17
+- Database pane on debug toolbar now displays location where Query was called from. Also displays full backtrace.
18
19
Changes
20
=======
0 commit comments