From 4e684c21d41092089ee418428e2043053e2fe0b1 Mon Sep 17 00:00:00 2001 From: shportix Date: Thu, 2 Nov 2023 15:05:08 +0200 Subject: [PATCH] test --- src/bitmessagemain.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bitmessagemain.py b/src/bitmessagemain.py index 1146f1d8..05ec8fb9 100755 --- a/src/bitmessagemain.py +++ b/src/bitmessagemain.py @@ -11,6 +11,7 @@ The PyBitmessage startup script # yet contain logic to expand into further streams. import os import sys +import logging try: import pathmagic @@ -172,7 +173,7 @@ class Main(object): defaults.networkDefaultPayloadLengthExtraBytes / 100) # Start the SQL thread - print("SQL_start") + logging.info("SQL started") sqlLookup = sqlThread() # DON'T close the main program even if there are threads left. # The closeEvent should command this thread to exit gracefully.