solaar: fix debugging levels
This commit is contained in:
parent
353c2dfb2f
commit
fc8628c9c5
|
@ -24,4 +24,3 @@ implementation.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
logger.setLevel(logging.root.level)
|
|
||||||
|
|
|
@ -500,6 +500,7 @@ class OnboardProfiles(_Setting):
|
||||||
choices_universe = _NamedInts(Disabled=0)
|
choices_universe = _NamedInts(Disabled=0)
|
||||||
for i in range(1, 16):
|
for i in range(1, 16):
|
||||||
choices_universe[i] = f"Profile {i}"
|
choices_universe[i] = f"Profile {i}"
|
||||||
|
choices_universe[i + 0x100] = f"Read-Only Profile {i}"
|
||||||
validator_class = _ChoicesV
|
validator_class = _ChoicesV
|
||||||
|
|
||||||
class rw_class:
|
class rw_class:
|
||||||
|
|
Loading…
Reference in New Issue