Skip to content

Commit

Permalink
Downgrade logging to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexeh committed Apr 1, 2024
1 parent be32784 commit 400cde8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions joystick_diagrams/plugins/dcs_world_plugin/dcs_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def process_profiles(self, profile_list: list | None = None) -> ProfileCollectio

_logger.info(f"Profiles to be processed {self.profiles_to_process}")
for profile in self.profiles_to_process:
_logger.info(f"Processing {profile=}")
_logger.debug(f"Processing {profile=}")
profile_object = collection.create_profile(profile_name=profile)
self.fq_path = os.path.join(
self.path, CONFIG_DIR, INPUT_DIR, profile, JOYSTICK_DIR
Expand All @@ -169,7 +169,7 @@ def process_profiles(self, profile_list: list | None = None) -> ProfileCollectio
return collection

def process_profile_device(self, item: Path, profile: Profile_):
_logger.info(f"Processing {profile=} device {item=}")
_logger.debug(f"Processing {profile=} device {item=}")
guid, name = (
item.name[GUID_POSITION_SLICE],
item.name[NAME_POSITION_SLICE],
Expand Down

0 comments on commit 400cde8

Please sign in to comment.