diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index 257095c..15d811a 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -11,4 +11,4 @@ VERSION_REVISION = 0 EIVE_TMTC_ROOT = Path(__file__).parent PACKAGE_ROOT = EIVE_TMTC_ROOT.parent -APP_LOGGER = logging.getLogger(__name__) +APP_LOGGER = logging.getLogger() diff --git a/eive_tmtc/pus_tm/hk_handling.py b/eive_tmtc/pus_tm/hk_handling.py index ca81bb3..68cf432 100644 --- a/eive_tmtc/pus_tm/hk_handling.py +++ b/eive_tmtc/pus_tm/hk_handling.py @@ -73,7 +73,9 @@ def handle_hk_packet( hk_data=hk_data, ) try: - if HK_OUTPUT_LEVEL > 0: + if HK_OUTPUT_LEVEL == 1: + pass + elif HK_OUTPUT_LEVEL > 1: handle_regular_hk_print( printer=printer, object_id=named_obj_id, diff --git a/eive_tmtc/pus_tm/pus_demux.py b/eive_tmtc/pus_tm/pus_demux.py index 6b74468..89ccb11 100644 --- a/eive_tmtc/pus_tm/pus_demux.py +++ b/eive_tmtc/pus_tm/pus_demux.py @@ -35,6 +35,7 @@ def pus_factory_hook( # noqa C901 : Complexity okay here return try: tm_packet = PusTelemetry.unpack(packet, CdsShortTimestamp.empty()) + # _LOGGER.info(f"Sequence count: {tm_packet.seq_count}") except ValueError as value_error: _LOGGER.warning(f"{value_error}") _LOGGER.warning("Could not generate PUS TM object from raw data")