diff --git a/tractor/ipc/_uds.py b/tractor/ipc/_uds.py index 25ad362b..eb53c6b2 100644 --- a/tractor/ipc/_uds.py +++ b/tractor/ipc/_uds.py @@ -169,7 +169,7 @@ class UDSAddress( # ?^TODO, for `multiaddr`'s parser we can't use the `::` # above^, SO maybe a `.` or something else here? # sockname: str = '.'.join(actor.uid) + f'@{pid}' - # -[ ] CURRETLY using `.` BREAKS TEST SUITE tho.. + # -[ ] CURRENTLY using `.` BREAKS TEST SUITE tho.. else: prefix: str = '' if is_root_process(): diff --git a/tractor/log.py b/tractor/log.py index 9af8f585..3ff5384b 100644 --- a/tractor/log.py +++ b/tractor/log.py @@ -416,9 +416,6 @@ def get_logger( mod_ns_path: str = caller_mod.__name__ mod_pkg_ns_path: str = caller_mod.__package__ - # if 'snakelib' in mod_pkg_ns_path: - # import pdbp - # breakpoint() if ( mod_pkg_ns_path in mod_ns_path or @@ -491,10 +488,6 @@ def get_logger( proper_name: str = name.removeprefix( f'{pkg_name}.' ) - # if 'pylib' in name: - # import pdbp - # breakpoint() - msg: str = ( f'@ {get_caller_mod()}\n' f'Duplicate pkg-name in sub-logger `name`-key?\n'