We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c09dc1 commit e972fc8Copy full SHA for e972fc8
src/seedsigner/gui/screens/screen.py
@@ -1,3 +1,4 @@
1
+import logging
2
import time
3
4
from dataclasses import dataclass, field
@@ -15,6 +16,8 @@
15
16
from seedsigner.models.settings import SettingsConstants
17
from seedsigner.models.threads import BaseThread, ThreadsafeCounter
18
19
+logger = logging.getLogger(__name__)
20
+
21
22
# Must be huge numbers to avoid conflicting with the selected_button returned by the
23
# screens with buttons.
@@ -450,7 +453,7 @@ def _run(self):
450
453
while True:
451
454
ret = self._run_callback()
452
455
if ret is not None:
- print("Exiting ButtonListScreen due to _run_callback")
456
+ logging.info("Exiting ButtonListScreen due to _run_callback")
457
return ret
458
459
user_input = self.hw_inputs.wait_for(
0 commit comments