diff --git a/piker/ui/_style.py b/piker/ui/_style.py index 6e89d8b6..90f8a898 100644 --- a/piker/ui/_style.py +++ b/piker/ui/_style.py @@ -121,7 +121,7 @@ class DpiAwareFont: self._font_inches = inches font_size = math.floor(inches * dpi) - log.info( + log.debug( f"\nscreen:{screen.name()} with pDPI: {pdpi}, lDPI: {ldpi}" f"\nOur best guess font size is {font_size}\n" ) diff --git a/piker/ui/_window.py b/piker/ui/_window.py index c4c3f510..d05a6ed6 100644 --- a/piker/ui/_window.py +++ b/piker/ui/_window.py @@ -230,7 +230,7 @@ class MainWindow(QtGui.QMainWindow): for _ in range(3): screen = app.screenAt(self.pos()) - print('trying to access QScreen...') + log.debug('trying to access QScreen...') if screen is None: time.sleep(0.5) continue