From c7436d5857ea3a1decaa112dca446096ec568f2c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 9 Jan 2022 11:46:42 -0500 Subject: [PATCH] Drop dpi logging back to debug --- piker/ui/_style.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/piker/ui/_style.py b/piker/ui/_style.py index 1b63e08f..5f1c4a3f 100644 --- a/piker/ui/_style.py +++ b/piker/ui/_style.py @@ -16,6 +16,7 @@ """ Qt UI styling. + """ from typing import Optional, Dict import math @@ -141,7 +142,7 @@ class DpiAwareFont: self._font_inches = inches font_size = math.floor(inches * dpi) - log.info( + log.debug( f"screen:{screen.name()}]\n" f"pDPI: {pdpi}, lDPI: {ldpi}, scale: {scale}\n" f"\nOur best guess font size is {font_size}\n"