This commit is contained in:
2026-02-09 17:45:57 -08:00
parent 567472bca0
commit 2fd13a6b3f
6 changed files with 57 additions and 34 deletions

View File

@@ -6,11 +6,8 @@ import json
import sqlite3
import time
import os
import traceback
import datetime
import sys
import getpass
import hashlib
import tempfile
from copy import deepcopy
from pathlib import Path
@@ -19,7 +16,7 @@ from SYS.logger import log
import logging
logger = logging.getLogger(__name__)
from SYS.utils import expand_path
from SYS.database import db, get_config_all, save_config_value, rows_to_config
from SYS.database import db, get_config_all, rows_to_config
SCRIPT_DIR = Path(__file__).resolve().parent

View File

@@ -2,12 +2,15 @@
import sys
import inspect
import logging
import threading
from pathlib import Path
from typing import Optional
from SYS.rich_display import console_for
logger = logging.getLogger(__name__)
# Global DB logger set later to avoid circular imports
_DB_LOGGER = None