added debug signal caller, updated some prints to logger, added settings option for min win size

This commit is contained in:
2023-04-29 09:27:21 -05:00
parent 72b70d28b5
commit f54e767f62
8 changed files with 66 additions and 21 deletions

View File

@@ -11,10 +11,10 @@ class IPCSignalsMixin:
""" IPCSignalsMixin handle messages from another starting solarfm process. """
def print_to_console(self, message=None):
print(message)
logger.debug(message)
def handle_file_from_ipc(self, path: str) -> None:
print(f"File From IPC: {path}")
logger.debug(f"File From IPC: {path}")
def handle_dir_from_ipc(self, path: str) -> None:
print(f"Dir From IPC: {path}")
logger.debug(f"Dir From IPC: {path}")