mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Remove debug logging now we're close to happy with the new mount approach
As per https://github.com/Textualize/textual/pull/1095#discussion_r1013042951
This commit is contained in:
@@ -461,13 +461,10 @@ class Widget(DOMNode):
|
||||
# to do.
|
||||
if before is not None:
|
||||
parent, before = self._find_mount_point(before)
|
||||
self.log.debug(f"MOUNT under {parent!r} before {before!r} ")
|
||||
elif after is not None:
|
||||
parent, after = self._find_mount_point(after)
|
||||
self.log.debug(f"MOUNT under {parent!r} after {after!r} ")
|
||||
else:
|
||||
parent = self
|
||||
self.log.debug(f"MOUNT under {self!r} at the end of the child list")
|
||||
|
||||
return AwaitMount(
|
||||
self.app._register(parent, *widgets, before=before, after=after)
|
||||
|
||||
Reference in New Issue
Block a user