Skip to content

Commit

Permalink
Don't use DEBUG log level in inspector script
Browse files Browse the repository at this point in the history
  • Loading branch information
SaladDais committed Oct 14, 2022
1 parent d7deced commit a60ac51
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/outleap/scripts/inspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
from outleap import LEAPClient, UIElement, UIPath
from outleap.qt_helpers import GUIInteractionManager, loadUi

ROOT_LOG = logging.getLogger()
ROOT_LOG.addHandler(logging.StreamHandler())
ROOT_LOG.setLevel(logging.DEBUG)
LOG = logging.getLogger(__name__)


Expand Down Expand Up @@ -270,6 +267,7 @@ async def start_gui():


def inspector_main():
logging.basicConfig()
QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_ShareOpenGLContexts)
app = QtWidgets.QApplication(sys.argv)
loop: asyncio.AbstractEventLoop = QEventLoop(app)
Expand Down

0 comments on commit a60ac51

Please sign in to comment.