Skip to content

Commit

Permalink
Formatted and --dev
Browse files Browse the repository at this point in the history
CREATE THE LOG_REPO AFTER GETTING DeBUG AND OTHER LOG
  • Loading branch information
DefinetlyNotAI committed Sep 24, 2024
1 parent 0fe1b6c commit aae81f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CODE/Logicytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ def special_run(file_path: str):

# Check weather to use threading or not, as well as execute code
if action == "threaded":

def threaded_execution(execution_list_thread, index_thread):
try:
thread_log = Execute().file(execution_list_thread, index_thread)
Expand All @@ -178,6 +179,7 @@ def threaded_execution(execution_list_thread, index_thread):
log.error(f"Error in thread: {err}")
except Exception as err:
log.error(f"Error in thread: {err}")

threads = []
for index, file in enumerate(execution_list):
thread = threading.Thread(
Expand Down
4 changes: 3 additions & 1 deletion CODE/__lib_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,9 @@ def sys_internal_zip():

elif ignore_file:
if __name__ == "__main__":
Log(debug=DEBUG).debug("Found .sys.ignore file, skipping SysInternal_Suite zip extraction")
Log(debug=DEBUG).debug(
"Found .sys.ignore file, skipping SysInternal_Suite zip extraction"
)

except Exception as err:
exit(f"Failed to unzip SysInternal_Suite: {err}")
Expand Down
2 changes: 1 addition & 1 deletion CODE/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"WEBHOOK URL": "IGNORE ME FOR NOW",
"ipgeolocation.io API KEY": "OPTIONAL - ADD A KEY",
"DEBUG": false,
"VERSION": "2.3.0",
"VERSION": "2.3.1",
"CURRENT_FILES": [
"browser_miner.ps1",
"driverquery+sysinfo.py",
Expand Down

0 comments on commit aae81f0

Please sign in to comment.