From 08d5d9e42587e5805af75098b449adebc8f4ee0f Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Thu, 17 Oct 2019 17:04:57 -0500 Subject: [PATCH] added install readme disclaimer and don't log max thread messages to terminal --- install/README.md | 5 +++++ onionr/communicatorutils/onionrcommunicatortimers.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 install/README.md diff --git a/install/README.md b/install/README.md new file mode 100644 index 00000000..abd69032 --- /dev/null +++ b/install/README.md @@ -0,0 +1,5 @@ +# Service/System Installation Notes + +Currently, the most reliable and well tested way to use Onionr is straight from the master branch of the repository, or from the released bundles. + +System services and system-wide installation is not supported well yet. diff --git a/onionr/communicatorutils/onionrcommunicatortimers.py b/onionr/communicatorutils/onionrcommunicatortimers.py index 058fb8eb..7ffaa355 100755 --- a/onionr/communicatorutils/onionrcommunicatortimers.py +++ b/onionr/communicatorutils/onionrcommunicatortimers.py @@ -67,7 +67,7 @@ class OnionrCommunicatorTimers: if self.make_thread: for i in range(self.thread_amount): if self.daemon_inst.threadCounts[self.timer_function.__name__] >= self.max_threads: - logger.debug('%s is currently using the maximum number of threads, not starting another.' % self.timer_function.__name__, terminal=True) + logger.debug('%s is currently using the maximum number of threads, not starting another.' % self.timer_function.__name__) else: self.daemon_inst.threadCounts[self.timer_function.__name__] += 1 newThread = threading.Thread(target=self.timer_function, args=self.args, daemon=True,