added debug logging
This commit is contained in:
parent
728f35b52c
commit
cd646e2089
|
@ -67,7 +67,9 @@ class SyncthingMonitor:
|
||||||
[{'id': self.my_device_id}])
|
[{'id': self.my_device_id}])
|
||||||
self.syncthing.sync_config()
|
self.syncthing.sync_config()
|
||||||
|
|
||||||
|
print("Registering etcd update callback...", flush=True)
|
||||||
self.etcd.register_device_update_handler(self.update_devices)
|
self.etcd.register_device_update_handler(self.update_devices)
|
||||||
|
print("Attempting to add this device to etcd...", flush=True)
|
||||||
self.etcd.add_device_to_cluster(self.my_device_id, self.syncthing_node_name, self.syncthing_publish_address)
|
self.etcd.add_device_to_cluster(self.my_device_id, self.syncthing_node_name, self.syncthing_publish_address)
|
||||||
|
|
||||||
self.loop()
|
self.loop()
|
||||||
|
|
|
@ -12,6 +12,7 @@ class EtcdClient:
|
||||||
self.key = key
|
self.key = key
|
||||||
|
|
||||||
def load_cluster_info(self):
|
def load_cluster_info(self):
|
||||||
|
print("Retrieving cluster info from etcd...", flush=True)
|
||||||
raw_value = self.etcd.get(self.key)[0]
|
raw_value = self.etcd.get(self.key)[0]
|
||||||
if raw_value is None:
|
if raw_value is None:
|
||||||
return {'devices': []}
|
return {'devices': []}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user