Skip to content

Commit

Permalink
main: don't print info in errors.log
Browse files Browse the repository at this point in the history
  • Loading branch information
AlyaGomaa committed Mar 6, 2024
1 parent 728d90b commit 5c23ce2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions slips/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,11 +583,11 @@ def start(self):
)
self.print(
f"Using redis server on " f"port: "
f"{green(self.redis_port)}", 1, 1
f"{green(self.redis_port)}", 1, 0
)
self.print(
f'Started {green("Main")} process ' f"[PID"
f" {green(self.pid)}]", 1, 1
f" {green(self.pid)}]", 1, 0
)
# start progress bar before all modules so it doesn't miss
# any prints in its queue and slips wouldn't seem like it's frozen
Expand Down Expand Up @@ -644,7 +644,7 @@ def start(self):
self.proc_man.start_update_manager(
local_files=True, TI_feeds=self.conf.wait_for_TI_to_finish()
)
self.print("Starting modules",1, 1)
self.print("Starting modules",1, 0)
self.proc_man.load_modules()
# give outputprocess time to print all the started modules
time.sleep(0.5)
Expand Down

0 comments on commit 5c23ce2

Please sign in to comment.