Skip to content

Commit d9d8a32

Browse files
committed
Partial fix for debug_toolbar query display
1 parent 9fbb4c1 commit d9d8a32

File tree

1 file changed

+1
-1
lines changed
  • django_mongodb_extensions/debug_toolbar/panels/mql

1 file changed

+1
-1
lines changed

django_mongodb_extensions/debug_toolbar/panels/mql/tracking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DebugToolbarWrapper(OperationDebugWrapper):
2626

2727
def __init__(self, db, collection, logger):
2828
super().__init__(db, collection)
29-
self.collection_name = collection.name
29+
self.collection_name = f"{collection.name}."
3030
self.logger = logger
3131

3232
def log(self, op, duration, args, kwargs=None):

0 commit comments

Comments
 (0)