We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6631f00 + fb9d492 commit eb44d40Copy full SHA for eb44d40
custom_components/jablotron80/const.py
@@ -40,9 +40,10 @@
40
DEFAULT_CONFIGURATION_QUIETEN_EXPECTED_WARNINGS = False
41
DEFAULT_CONFIGURATION_VERBOSE_CONNECTION_LOGGING = False
42
43
-LOGGER.setLevel(logging.DEBUG)
+# Set default Log Level to Debug
44
+# LOGGER.setLevel(logging.DEBUG)
45
handler = logging.StreamHandler(sys.stdout)
-handler.setLevel(logging.DEBUG)
46
+# handler.setLevel(logging.DEBUG)
47
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
48
handler.setFormatter(formatter)
49
LOGGER.addHandler(handler)
0 commit comments