Skip to content

Commit

Permalink
Merge pull request #83 from kwokcb/logging_init
Browse files Browse the repository at this point in the history
Patch logging init order for plug-ins
  • Loading branch information
RichardFrangenberg authored Jul 23, 2024
2 parents 892771d + ad6c555 commit 6e44f1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/QuiltiX/quiltix.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
import webbrowser
from importlib import metadata

logging.basicConfig()
logging.root.setLevel("DEBUG")

# Setup plugin manager here before we import a lot of the modules
from QuiltiX import qx_plugin

Expand Down Expand Up @@ -48,11 +51,8 @@
from QuiltiX.qx_node_property import PropertiesBinWidget
from QuiltiX.qx_nodegraph import QxNodeGraph

logging.basicConfig()
logging.root.setLevel("DEBUG")
logger = logging.getLogger(__name__)


class QuiltiXWindow(QMainWindow):
def __init__(self, load_style_sheet=True, load_shaderball=True, load_default_graph=True):
super(QuiltiXWindow, self).__init__()
Expand Down

0 comments on commit 6e44f1b

Please sign in to comment.