diff --git a/ait/core/server/handlers/__init__.py b/ait/core/server/handlers/__init__.py index cbd5094f..91215123 100644 --- a/ait/core/server/handlers/__init__.py +++ b/ait/core/server/handlers/__init__.py @@ -1,3 +1,2 @@ from .ccsds_packet_handler import * # noqa -from .debug_handler import * # noqa from .packet_handler import * # noqa diff --git a/ait/core/server/handlers/debug_handler.py b/ait/core/server/handlers/debug_handler.py deleted file mode 100644 index aab598b4..00000000 --- a/ait/core/server/handlers/debug_handler.py +++ /dev/null @@ -1,12 +0,0 @@ -import ait.core.log -from ait.core.server.handler import Handler - - -class DebugHandler(Handler): - def __init__(self, input_type=None, output_type=None, **kwargs): - super(DebugHandler, self).__init__(input_type, output_type) - self.handler_name = kwargs.get("handler_name", "DebugHandler") - - def handle(self, input_data): - ait.core.log.info(f"{self.handler_name} received {len(input_data)} bytes") - return input_data