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.
1 parent 7370683 commit ec5c724Copy full SHA for ec5c724
ROOTFS/usr/bin/waggle_network_watchdog.py
@@ -117,6 +117,11 @@ def read_network_watchdog_config(filename):
117
soft_reset_settings = read_config_section_dict(filename, "soft-reboot")
118
hard_reset_settings = read_config_section_dict(filename, "hard-reboot")
119
120
+ logging.info(f"Config [all]: {all_settings}")
121
+ logging.info(f"Config [network-reboot]: {network_reset_settings}")
122
+ logging.info(f"Config [soft-reboot]: {soft_reset_settings}")
123
+ logging.info(f"Config [hard-reboot]: {hard_reset_settings}")
124
+
125
sd_card_storage_loc = ""
126
if read_current_media() == MEDIA_SD:
127
sd_card_storage_loc = all_settings.get("sd_card_storage_loc", None)
0 commit comments