reference https://github.com/SpudGunMan/meshing-around/discussions/125
This commit is contained in:
SpudGunMan
2025-02-05 19:09:16 -08:00
parent 17d8cd1067
commit ff390cf470
+1 -1
View File
@@ -31,7 +31,7 @@ def never_seen_before(nodeID):
except sqlite3.OperationalError as e:
if "no such table" in str(e):
initalize_qrz_database()
logger.error("QRZ database table not found, created new table")
logger.warning("QRZ database table not found, created new table")
# we have not seen this node before
return True
else: