From 4bf228aebef4505f2fd68fd542afdeae4b4e396b Mon Sep 17 00:00:00 2001 From: Marshall Hallenbeck Date: Sun, 17 Aug 2025 15:45:51 -0400 Subject: [PATCH] fix(logging): change success to display --- nxc/protocols/smb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxc/protocols/smb.py b/nxc/protocols/smb.py index 4df7a645..84e1b67d 100755 --- a/nxc/protocols/smb.py +++ b/nxc/protocols/smb.py @@ -1905,7 +1905,7 @@ class smb(connection): # create the directory for this folder os.makedirs(local_folder_path, exist_ok=True) if not filtered_items and not silent: - self.logger.success(f"Created empty directory '{local_folder_path}'") + self.logger.display(f"Created empty directory '{local_folder_path}'") for item in filtered_items: item_name = item.get_longname()