indigo server without internet connection?

Posted on
Fri Sep 09, 2016 8:58 am
BenX10 offline
Posts: 52
Joined: Mar 10, 2012
Location: Haltern am See, Germany

indigo server without internet connection?

Last night our house had no internet for about 9 hours. Had to disable all things online in indigo like wunderground etc., no problem there. But I see "Error unable to execute action -- device plugin Action Collection not running" very often. This error occurs e.g. in case a battery powered Z-Wave device reports its battery state and that triggers an event. Another example is button press in indigo touch which also triggers an event or switches a virtual device. Had to restart indigo server after internet was working again and everything is fine.

So my question is: Where can I find that plugin "Action Collection" and why does it depend on an internet connection? indigo server is 6.1.10 running on macOS 10.11.6.

Cheers,
Ben

Posted on
Fri Sep 09, 2016 9:11 am
jay (support) offline
Site Admin
User avatar
Posts: 18246
Joined: Mar 19, 2008
Location: Austin, Texas

Re: indigo server without internet connection?

That's a built-in (hidden) plugin that supplies a bunch of actions. It should never be disabled (and there's no way to do so in the UI), so I'm not sure how you got it into that state. What exactly did you to to disable the other plugins?

That plugin doesn't use the network at all - the error is because the plugin somehow got disabled.

Jay (Indigo Support)
Twitter | Facebook | LinkedIn

Posted on
Fri Sep 09, 2016 9:30 am
MarcoGT offline
Posts: 1091
Joined: Sep 11, 2014
Location: Germany

Re: indigo server without internet connection?

I also got that error some weeks ago...

Posted on
Fri Sep 09, 2016 11:12 am
DaveL17 offline
User avatar
Posts: 6781
Joined: Aug 20, 2013
Location: Chicago, IL, USA

Re: indigo server without internet connection?

Can you please PM me some log segments around that time? WUnderground should recognize there's no WAN and wait until the next poll interval.


Sent from my iPhone using Tapatalk

I came here to drink milk and kick ass....and I've just finished my milk.

[My Plugins] - [My Forums]

Posted on
Fri Sep 09, 2016 4:12 pm
matt (support) offline
Site Admin
User avatar
Posts: 21421
Joined: Jan 27, 2003
Location: Texas

Re: indigo server without internet connection?

Hi Be,

Can you copy/paste into a reply a chunk from your Event Log showing before/after the power outage? I want to see if there are any other clues in there as to what is going wrong.

Image

Posted on
Fri Sep 09, 2016 4:16 pm
matt (support) offline
Site Admin
User avatar
Posts: 21421
Joined: Jan 27, 2003
Location: Texas

Re: indigo server without internet connection?

Regarding:

"This error occurs e.g. in case a battery powered Z-Wave device reports its battery state and that triggers an event"

What event (action) specifically does it trigger?

Image

Posted on
Sat Sep 10, 2016 10:05 am
BenX10 offline
Posts: 52
Joined: Mar 10, 2012
Location: Haltern am See, Germany

Re: indigo server without internet connection?

It began at 0:30 with an embeded AppleScript I wrote to fetch weather maps. It's scheduled to run every 30 minutes.
Code: Select all
property fetchTimeout : 2
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/wv_allg/europa/bilder/vhs_euro_morgen.jpg' -o ~/Pictures/vhs_euro_morgen.jpg"
   end timeout
end try
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/aktuell/welt/bilder/wx_europa_akt.jpg' -o ~/Pictures/wx_europa_akt.jpg"
   end timeout
end try
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/sat/satwetter/satwetter.jpg' -o ~/Pictures/satwetter.jpg"
   end timeout
end try
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/aktuell/deutschland/bilder/wx_nrw_akt.jpg' -o ~/Pictures/wx_nrw_akt.jpg"
   end timeout
end try
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/radar/rad_nrw_akt.jpg' -o ~/Pictures/rad_nrw_akt.jpg"
   end timeout
end try
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/wv_allg/deutschland/bilder/vhs_nrw_morgenfrueh.jpg' -o ~/Pictures/vhs_nrw_morgenfrueh.jpg"
   end timeout
end try
try
   with timeout of fetchTimeout seconds
      do shell script "curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.12+ (KHTML, like Gecko)' -f 'http://www.dwd.de/DWD/wetter/wv_allg/deutschland/bilder/vhs_nrw_morgenspaet.jpg' -o ~/Pictures/vhs_nrw_morgenspaet.jpg"
   end timeout
end try
Log:
Code: Select all
2016-09-09 00:30:00.456   Schedule   Wetter-Karten
2016-09-09 00:30:10.449   Error   because embedded scripts execute sequentially they must complete their execution within 10 seconds.
2016-09-09 00:30:10.451   Error   modify the script to exit quickly or convert it to an external file (not embedded).
2016-09-09 00:30:10.451   Application   Stopping embedded script executor host (pid 464)
2016-09-09 00:30:12.501   Error   process (pid 464) failed to quit after polite request -- forcing it to quit now
2016-09-09 00:30:12.502   Application   Stopped "embedded script executor host"
2016-09-09 00:30:35.530   Error   embedded script executor host failed to initialize
2016-09-09 00:30:35.532   Application   Stopping embedded script executor host (pid 70892)
2016-09-09 00:30:35.845   Application   Stopped "embedded script executor host"
2016-09-09 00:30:56.887   Error   embedded script executor host failed to initialize
2016-09-09 00:30:56.889   Application   Stopping embedded script executor host (pid 70935)
2016-09-09 00:30:57.097   Application   Stopped "embedded script executor host"
2016-09-09 00:31:18.232   Error   embedded script executor host failed to initialize
2016-09-09 00:31:18.233   Application   Stopping embedded script executor host (pid 70969)
2016-09-09 00:31:18.335   Application   Stopped "embedded script executor host"
2016-09-09 00:31:21.324   Action Collection Error   Error in plugin execution ExecuteAction:

Traceback (most recent call last):
  File "plugin.py", line 303, in insertState
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:31:21.327   Z-Wave   received "Thermostat Bad EG" mode is off
2016-09-09 00:31:21.328   Z-Wave   received "Thermostat Bad EG" temperature update to 22.5 °C
2016-09-09 00:31:21.329   Z-Wave   received "Thermostat Bad EG" heat setpoint is 16.0 °C
2016-09-09 00:31:21.330   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:31:21.331   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:31:21.332   Script Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:31:21.333   Script Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:31:21.334   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:31:21.334   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:31:21.337   Z-Wave   received "Thermostat Buero DG" mode is off
2016-09-09 00:31:21.338   Z-Wave   received "Thermostat Buero DG" temperature update to 25.0 °C
2016-09-09 00:31:21.339   Z-Wave   received "Thermostat Buero DG" heat setpoint is 18.0 °C
2016-09-09 00:31:21.341   Script Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:32:47.466   Z-Wave   received "Thermostat Bad KG" mode is off
2016-09-09 00:32:47.469   Z-Wave   received "Thermostat Bad KG" temperature update to 20.5 °C
2016-09-09 00:32:47.471   Z-Wave   received "Thermostat Bad KG" heat setpoint is 16.0 °C
2016-09-09 00:32:47.473   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2628, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:32:47.475   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:32:47.475   Z-Wave   received "Bad KG Lux" sensor update to 0 lux
2016-09-09 00:32:47.477   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:32:47.478   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:32:47.488   Z-Wave Error   Error in plugin execution:

Traceback (most recent call last):
  File "/Library/Application Support/Perceptive Automation/Indigo 6/IndigoPluginHost.app/Contents/PlugIns/serialinterface.py", line 438, in startCommThread
    self.processCommThread()
  File "/Library/Application Support/Perceptive Automation/Indigo 6/IndigoPluginHost.app/Contents/PlugIns/serialinterface.py", line 612, in processCommThread
    self.processQueueInPacket(packet)         # Subclass is required to define.
  File "zwaveinterface.py", line 1640, in processQueueInPacket
  File "zwaveinterface.py", line 1614, in _processFuncCall
  File "zwaveinterface.py", line 1665, in _processCommandReply
  File "zwaveinterface.py", line 1612, in _processFuncCall
  File "actionsensor.py", line 325, in _processVarSensorStatusReply
  File "actionsensor.py", line 235, in _processSensorNumVal
  File "zwavecntrl_triggers.py", line 114, in executeTriggersFromParms
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:32:47.489   Z-Wave Error   exc type is <type 'exceptions.StandardError'>
2016-09-09 00:32:47.489   Z-Wave Error   restarting serial connection in 5.0 seconds
2016-09-09 00:32:47.490   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:34:13.709   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.710   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 00:34:13.710   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.711   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.711   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.712   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.712   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.713   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.713   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.713   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:34:13.714   Z-Wave Error   failed to get module 006 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:34:13.715   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:34:13.715   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:34:13.716   Z-Wave Error   failed to get module 007 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:34:13.717   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:34:13.717   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:34:13.718   Z-Wave Error   failed to get module 008 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:34:13.718   Z-Wave Error   failed to get module 010 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:34:13.724   Z-Wave Error   module 011 included in controller no longer matches device "LED Regal" type (controller module type: zwRelayType/zwRelayType (4, 16, 0), indigo device type: zwRelayType (4, 16, 1))
2016-09-09 00:35:10.597   Application   Indigo Cocoa client connected
2016-09-09 00:35:41.510   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2835, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:35:41.512   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:35:41.512   Z-Wave Error   failed to get module 023 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:35:41.513   Z-Wave Error   failed to get module 030 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:35:41.514   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:35:41.515   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:35:41.515   Z-Wave Error   failed to get module 033 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:35:41.516   Z-Wave Error   failed to get module 034 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:35:41.531   Z-Wave Error   failed to get module 035 info from controller (LowLevelBadParameterError -- copyFrom source and destination type mismatch (object may have changed classes))
2016-09-09 00:37:10.127   Z-Wave Error   failed to get module 037 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:37:10.128   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:37:10.129   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:37:10.129   Z-Wave Error   failed to get module 038 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:37:10.130   Z-Wave Error   failed to get module 039 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.130   Z-Wave Error   failed to get module 040 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.131   Z-Wave Error   failed to get module 042 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.131   Z-Wave Error   failed to get module 043 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.132   Z-Wave Error   failed to get module 044 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.132   Z-Wave Error   failed to get module 046 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.133   Z-Wave Error   failed to get module 047 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.133   Z-Wave Error   failed to get module 048 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.134   Z-Wave Error   failed to get module 049 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.134   Z-Wave Error   failed to get module 052 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.135   Z-Wave Error   failed to get module 061 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.135   Z-Wave Error   failed to get module 064 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.136   Z-Wave Error   failed to get module 068 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.136   Z-Wave Error   failed to get module 069 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.137   Z-Wave Error   failed to get module 070 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.137   Z-Wave Error   failed to get module 071 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.138   Z-Wave Error   failed to get module 072 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.138   Z-Wave Error   failed to get module 076 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.139   Z-Wave Error   failed to get module 083 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.139   Z-Wave Error   failed to get module 085 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.140   Z-Wave Error   failed to get module 086 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.140   Z-Wave Error   failed to get module 088 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.141   Z-Wave Error   failed to get module 089 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.141   Z-Wave Error   failed to get module 090 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.142   Z-Wave Error   failed to get module 091 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.142   Z-Wave Error   failed to get module 092 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.143   Z-Wave Error   failed to get module 096 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.143   Z-Wave Error   failed to get module 098 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.144   Z-Wave Error   failed to get module 099 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.145   Z-Wave Error   failed to get module 100 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.145   Z-Wave Error   failed to get module 101 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.146   Z-Wave Error   failed to get module 102 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.146   Z-Wave Error   failed to get module 103 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.147   Z-Wave Error   failed to get module 104 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.147   Z-Wave Error   failed to get module 106 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.148   Z-Wave Error   failed to get module 107 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.148   Z-Wave Error   failed to get module 108 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.149   Z-Wave Error   failed to get module 109 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.149   Z-Wave Error   failed to get module 111 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.150   Z-Wave Error   failed to get module 113 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.150   Z-Wave Error   failed to get module 140 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.151   Z-Wave Error   failed to get module 141 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.151   Z-Wave Error   failed to get module 142 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.152   Z-Wave Error   failed to get module 147 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.152   Z-Wave Error   failed to get module 153 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.153   Z-Wave Error   failed to get module 155 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.153   Z-Wave Error   failed to get module 156 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.154   Z-Wave Error   failed to get module 161 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.154   Z-Wave Error   failed to get module 165 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.155   Z-Wave Error   failed to get module 167 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.155   Z-Wave Error   failed to get module 168 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.156   Z-Wave Error   failed to get module 178 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.156   Z-Wave Error   to re-enable the devices with new z-wave modules, press the "Define and Sync..." button in the device dialog
2016-09-09 00:37:10.175   Z-Wave Error   serial port communication error: read failed: [Errno 6] Device not configured
2016-09-09 00:37:10.176   Z-Wave Error   Z-Wave 3.95 static controller might be disconnected
2016-09-09 00:37:10.176   Z-Wave Error   silently retrying serial connection every 5.0 seconds
2016-09-09 00:37:10.177   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:37:10.177   WUnderground Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 2673, in runConcurrentThread
  File "plugin.py", line 2555, in refreshWeatherData
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:37:10.178   WUnderground Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:37:10.178   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:37:10.179   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:37:10.180   Z-Wave Error   failed to get module 002 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:37:10.180   WUnderground Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 2673, in runConcurrentThread
  File "plugin.py", line 2555, in refreshWeatherData
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:37:10.181   WUnderground Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:37:10.181   Z-Wave Error   failed to get module 004 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:37:10.182   Z-Wave Error   failed to get module 005 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.182   Z-Wave Error   failed to get module 006 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.183   Z-Wave Error   failed to get module 007 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.184   Z-Wave Error   failed to get module 008 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.185   Z-Wave Error   failed to get module 010 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.185   Z-Wave Error   failed to get module 011 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.186   Z-Wave Error   failed to get module 018 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.187   Z-Wave Error   failed to get module 023 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.187   Z-Wave Error   failed to get module 030 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.188   Z-Wave Error   failed to get module 033 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.189   Z-Wave Error   failed to get module 034 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.189   Z-Wave Error   failed to get module 035 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.190   Z-Wave Error   failed to get module 037 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.191   Z-Wave Error   failed to get module 038 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.191   Z-Wave Error   failed to get module 039 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.192   Z-Wave Error   failed to get module 040 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.192   Z-Wave Error   failed to get module 042 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.193   Z-Wave Error   failed to get module 043 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.193   Z-Wave Error   failed to get module 044 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.194   Z-Wave Error   failed to get module 046 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.194   Z-Wave Error   failed to get module 047 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.195   Z-Wave Error   failed to get module 048 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.195   Z-Wave Error   failed to get module 049 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.196   Z-Wave Error   failed to get module 052 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.196   Z-Wave Error   failed to get module 061 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.197   Z-Wave Error   failed to get module 064 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.197   Z-Wave Error   failed to get module 068 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.198   Z-Wave Error   failed to get module 069 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.198   Z-Wave Error   failed to get module 070 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.199   Z-Wave Error   failed to get module 071 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.199   Z-Wave Error   failed to get module 072 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.200   Z-Wave Error   failed to get module 076 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.200   Z-Wave Error   failed to get module 083 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.201   Z-Wave Error   failed to get module 085 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.201   Z-Wave Error   failed to get module 086 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.202   Z-Wave Error   failed to get module 088 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.202   Z-Wave Error   failed to get module 089 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.203   Z-Wave Error   failed to get module 090 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.203   Z-Wave Error   failed to get module 091 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.204   Z-Wave Error   failed to get module 092 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.204   Z-Wave Error   failed to get module 096 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.205   Z-Wave Error   failed to get module 098 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.205   Z-Wave Error   failed to get module 099 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.206   Z-Wave Error   failed to get module 100 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.206   Z-Wave Error   failed to get module 101 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.207   Z-Wave Error   failed to get module 102 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.207   Z-Wave Error   failed to get module 103 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.208   Z-Wave Error   failed to get module 104 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.208   Z-Wave Error   failed to get module 106 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.209   Z-Wave Error   failed to get module 107 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.209   Z-Wave Error   failed to get module 108 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.210   Z-Wave Error   failed to get module 109 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.210   Z-Wave Error   failed to get module 111 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.211   Z-Wave Error   failed to get module 113 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.211   Z-Wave Error   failed to get module 140 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.212   Z-Wave Error   failed to get module 141 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.212   Z-Wave Error   failed to get module 142 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.213   Z-Wave Error   failed to get module 147 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.213   Z-Wave Error   failed to get module 153 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.214   Z-Wave Error   failed to get module 155 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.214   Z-Wave Error   failed to get module 156 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.215   Z-Wave Error   failed to get module 161 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.215   Z-Wave Error   failed to get module 165 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.216   Z-Wave Error   failed to get module 167 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.216   Z-Wave Error   failed to get module 168 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:37:10.217   Z-Wave Error   failed to get module 178 info from controller (write failed: [Errno 6] Device not configured)
2016-09-09 00:38:37.413   Z-Wave Error   serial port communication error: read failed: [Errno 6] Device not configured
2016-09-09 00:38:37.414   Z-Wave Error   Z-Wave 3.95 static controller might be disconnected
2016-09-09 00:38:37.415   Z-Wave Error   silently retrying serial connection every 5.0 seconds
2016-09-09 00:38:37.415   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:38:37.416   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2835, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:38:37.416   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:38:37.417   Z-Wave Error   failed to get module 002 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:38:37.418   WUnderground Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 2673, in runConcurrentThread
  File "plugin.py", line 2555, in refreshWeatherData
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:38:37.418   WUnderground Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:38:37.419   Z-Wave Error   failed to get module 004 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:38:37.419   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 00:38:37.420   Z-Wave   found module included in controller with no matching device (missing or disabled): 006 - Relay Power Switch
2016-09-09 00:38:37.420   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:38:37.421   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:38:37.421   WUnderground Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 2673, in runConcurrentThread
  File "plugin.py", line 2555, in refreshWeatherData
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:38:37.422   WUnderground Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:38:37.422   Z-Wave Error   failed to get module 007 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:38:37.423   Z-Wave Error   failed to get module 008 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:38:37.429   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.430   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.431   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.431   Z-Wave Error   failed to get module 010 info from controller (LowLevelBadParameterError -- copyFrom source and destination type mismatch (object may have changed classes))
2016-09-09 00:38:37.432   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.434   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.435   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.436   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:38:37.439   Z-Wave Error   module 011 included in controller no longer matches device "LED Regal" type (controller module type: zwRelayType/zwRelayType (4, 16, 0), indigo device type: zwRelayType (4, 16, 1))
2016-09-09 00:40:04.319   Z-Wave Error   failed to get module 018 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:40:04.321   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:40:04.321   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:40:04.322   WUnderground Error   Unable to reach Weather Underground. Reason: URLError - <urlopen error [Errno 8] nodename nor servname provided, or not known>
2016-09-09 00:40:04.322   WUnderground Error   Sleeping until next scheduled poll.
2016-09-09 00:40:04.323   Z-Wave Error   failed to get module 023 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:40:04.324   WUnderground Error   Unable to reach Weather Underground. Reason: Exception - ServerCommunicationError -- timeout waiting for response. Sleeping until next scheduled poll.

2016-09-09 00:40:04.324   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:40:04.325   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:40:04.325   Z-Wave Error   failed to get module 030 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:40:04.326   WUnderground Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 2673, in runConcurrentThread
  File "plugin.py", line 2602, in refreshWeatherData
  File "plugin.py", line 866, in getWeatherData
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:40:04.326   WUnderground Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:40:04.327   Z-Wave Error   failed to get module 033 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:40:04.337   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:40:04.338   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:40:04.339   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:40:04.339   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:40:04.340   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:40:04.346   Schedule   Wetter-Warnung
2016-09-09 00:41:31.212   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2835, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:41:31.214   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:41:31.214   Z-Wave Error   failed to get module 038 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:41:31.215   WUnderground Error   Unable to reach Weather Underground. Reason: URLError - <urlopen error [Errno 8] nodename nor servname provided, or not known>
2016-09-09 00:41:31.215   WUnderground Error   Sleeping until next scheduled poll.
2016-09-09 00:41:31.216   Z-Wave Error   failed to get module 039 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:41:31.217   WUnderground Error   Unable to reach Weather Underground. Reason: Exception - ServerCommunicationError -- timeout waiting for response. Sleeping until next scheduled poll.

2016-09-09 00:41:31.217   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:41:31.218   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:41:31.218   Z-Wave Error   failed to get module 040 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:41:31.219   WUnderground Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 2673, in runConcurrentThread
  File "plugin.py", line 2602, in refreshWeatherData
  File "plugin.py", line 866, in getWeatherData
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:41:31.219   WUnderground Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:41:31.220   Z-Wave Error   failed to get module 042 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:41:31.230   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:41:31.231   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:41:31.232   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:41:31.233   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:41:31.234   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:41:31.926   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 00:41:31.939   Z-Wave Error   to re-enable the devices with new z-wave modules, press the "Define and Sync..." button in the device dialog
2016-09-09 00:41:31.953   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:41:31.955   Interface Failure   lost connection with interface
2016-09-09 00:41:31.956   Trigger   Z-Wave Fehler
2016-09-09 00:41:31.965   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:41:31.972   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:41:31.976   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:41:31.981   Z-Wave   received "Bad KG Temperatur" sensor update to 21.3 °C
2016-09-09 00:41:31.986   Z-Wave   received "Bad KG Temperatur" sensor update to 21.3 °C
2016-09-09 00:41:31.991   Z-Wave   received "Bad KG Temperatur" sensor update to 21.3 °C
2016-09-09 00:41:31.998   Z-Wave   received "Bad KG Temperatur" sensor update to 21.3 °C
2016-09-09 00:41:32.189   Application   Embedded script executor host started
2016-09-09 00:41:32.235   Application   Reloading interface "Z-Wave 1.0.368"
2016-09-09 00:41:32.236   Application   Stopping interface "Z-Wave 1.0.368" (pid 432)
2016-09-09 00:41:32.259   Z-Wave Error   failed to process node 153 awake processing
2016-09-09 00:41:32.276   Z-Wave Error   send goToSleep aborted (communication shutting down)
2016-09-09 00:41:32.277   Z-Wave Error   restarting serial connection in 5.0 seconds
2016-09-09 00:41:32.278   Z-Wave   closed connection to Z-Wave 3.95 static controller
2016-09-09 00:41:33.658   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:41:35.162   Application   Starting interface "Z-Wave 1.0.368" (pid 72020)
2016-09-09 00:41:35.178   Interface Failure   lost connection with interface
2016-09-09 00:41:35.179   Trigger   Z-Wave Fehler
2016-09-09 00:41:35.188   Application   Reloading interface "Z-Wave 1.0.368"
2016-09-09 00:41:35.189   Application   Stopping interface "Z-Wave 1.0.368" (pid 72020)
2016-09-09 00:41:35.289   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:41:36.795   Application   Starting interface "Z-Wave 1.0.368" (pid 72021)
2016-09-09 00:41:37.266   Application   Started interface "Z-Wave 1.0.368"
2016-09-09 00:41:38.282   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:41:38.418   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 00:41:38.421   Z-Wave   found module included in controller with no matching device (missing or disabled): 006 - Relay Power Switch
2016-09-09 00:41:38.803   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 00:41:41.803   Z-Wave   received "Thermostat Bad KG" mode is off
2016-09-09 00:41:41.805   Z-Wave   received "Thermostat Bad KG" temperature update to 20.5 °C
2016-09-09 00:41:41.806   Z-Wave   received "Thermostat Bad KG" heat setpoint is 16.0 °C
2016-09-09 00:41:41.810   Z-Wave   received "085 - Thermostat Bad KG" status update battery level 32%
2016-09-09 00:41:41.810   Trigger   Thermostat Bad KG
2016-09-09 00:41:43.615   Z-Wave   received "Durchgang Lux" sensor update to 0 lux
2016-09-09 00:41:43.621   Z-Wave   received "Durchgang Luftfeuchte" sensor update to 75%
2016-09-09 00:41:43.628   Z-Wave   received "Durchgang Temperatur" sensor update to 18.0 °C
2016-09-09 00:41:46.324   Z-Wave   received "086 - Durchgang Bewegung" status update battery level 58%
2016-09-09 00:41:46.325   Trigger   Durchgang BW
2016-09-09 00:42:01.289   WUnderground Error   Unable to reach Weather Underground. Reason: URLError - <urlopen error [Errno 8] nodename nor servname provided, or not known>
2016-09-09 00:42:01.291   WUnderground Error   Sleeping until next scheduled poll.
2016-09-09 00:42:02.048   Error   email send connection failed
2016-09-09 00:42:02.050   Error   email re-send scheduled in 10 minutes
2016-09-09 00:42:12.174   Z-Wave   received "068 - CO-Alarm" status update battery level 66%
2016-09-09 00:42:30.481   Z-Wave   received "DG Lux" sensor update to 7 lux
2016-09-09 00:42:30.492   Z-Wave   received "DG Luftfeuchte" sensor update to 61%
2016-09-09 00:42:30.565   Z-Wave   received "DG Temperatur" sensor update to 23.5 °C
2016-09-09 00:42:31.448   WUnderground Error   Unable to reach Weather Underground. Reason: URLError - <urlopen error [Errno 8] nodename nor servname provided, or not known>
2016-09-09 00:42:31.450   WUnderground Error   Sleeping until next scheduled poll.
2016-09-09 00:42:34.906   Z-Wave   received "Thermostat WoZi EG" mode is off
2016-09-09 00:42:34.908   Z-Wave   received "Thermostat WoZi EG" temperature update to 23.0 °C
2016-09-09 00:42:34.908   Z-Wave   received "Thermostat WoZi EG" heat setpoint is 16.0 °C
2016-09-09 00:42:34.912   Z-Wave   received "142 - Thermostat WoZi EG" status update battery level 96%
2016-09-09 00:42:34.912   Trigger   Thermostat WoZi EG
2016-09-09 00:42:56.457   Z-Wave   received "Thermostat Kueche" mode is off
2016-09-09 00:42:56.458   Z-Wave   received "Thermostat Kueche" temperature update to 24.0 °C
2016-09-09 00:42:56.459   Z-Wave   received "Thermostat Kueche" heat setpoint is 16.0 °C
2016-09-09 00:42:56.463   Z-Wave   received "141 - Thermostat Kueche" status update battery level 0%
2016-09-09 00:42:56.463   Trigger   Thermostat Kueche
2016-09-09 00:43:45.925   Action Group   TV
2016-09-09 00:43:51.736   Z-Wave   received "Thermostat WoZi DG" mode is off
2016-09-09 00:43:51.738   Z-Wave   received "Thermostat WoZi DG" temperature update to 26.5 °C
2016-09-09 00:43:51.739   Z-Wave   received "Thermostat WoZi DG" heat setpoint is 18.0 °C
2016-09-09 00:43:51.747   Z-Wave   received "113 - Thermostat WoZi DG" status update battery level 6%
2016-09-09 00:43:51.748   Trigger   Thermostat WoZi DG
2016-09-09 00:43:55.046   Z-Wave   received "Bad KG Lux" sensor update to 0 lux
2016-09-09 00:43:55.082   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:43:55.153   Z-Wave   received "Bad KG Temperatur" sensor update to 21.3 °C
2016-09-09 00:44:00.003   Trigger   NowTitle Change
2016-09-09 00:44:00.005   Trigger   NowTime Change
2016-09-09 00:44:00.007   Trigger   NowDesc Change
2016-09-09 00:44:00.009   Trigger   NextTitle Change
2016-09-09 00:44:07.023   Trigger   NowDesc Change
2016-09-09 00:44:19.611   Trigger   NowTitle Change
2016-09-09 00:44:19.613   Trigger   NowTime Change
2016-09-09 00:44:19.614   Trigger   NowDesc Change
2016-09-09 00:44:19.616   Trigger   NextTitle Change
2016-09-09 00:45:00.397   Schedule   Bad KG Wunsch
2016-09-09 00:45:00.398   Action Group   Bad KG An/Aus
2016-09-09 00:45:00.399   Schedule   Bad EG Wunsch
2016-09-09 00:45:00.400   Action Group   Bad EG An/Aus
2016-09-09 00:45:00.401   Schedule   Kueche Wunsch
2016-09-09 00:45:00.401   Action Group   Kueche An/Aus
2016-09-09 00:45:00.402   Schedule   SchlaZi KG Wunsch
2016-09-09 00:45:00.402   Action Group   SchlaZi KG An/Aus
2016-09-09 00:45:00.403   Schedule   WoZi EG Wunsch
2016-09-09 00:45:00.403   Action Group   WoZi EG An/Aus
2016-09-09 00:45:00.404   Schedule   DG Wunsch
2016-09-09 00:45:00.405   Action Group   DG An/Aus
2016-09-09 00:45:00.433   Schedule   Wetter-Warnung
2016-09-09 00:45:10.440   Error   because embedded scripts execute sequentially they must complete their execution within 10 seconds.
2016-09-09 00:45:10.442   Error   modify the script to exit quickly or convert it to an external file (not embedded).
2016-09-09 00:45:10.443   Application   Stopping embedded script executor host (pid 72014)
2016-09-09 00:45:12.528   Error   process (pid 72014) failed to quit after polite request -- forcing it to quit now
2016-09-09 00:45:12.530   Application   Stopped "embedded script executor host"
2016-09-09 00:45:35.953   Error   embedded script executor host failed to initialize
2016-09-09 00:45:35.955   Application   Stopping embedded script executor host (pid 72378)
2016-09-09 00:45:36.789   Application   Stopped "embedded script executor host"
2016-09-09 00:45:58.266   Error   embedded script executor host failed to initialize
2016-09-09 00:45:58.267   Application   Stopping embedded script executor host (pid 72416)
2016-09-09 00:45:59.090   Application   Stopped "embedded script executor host"
2016-09-09 00:46:20.501   Error   embedded script executor host failed to initialize
2016-09-09 00:46:20.502   Application   Stopping embedded script executor host (pid 72453)
2016-09-09 00:46:21.438   Application   Stopped "embedded script executor host"
2016-09-09 00:46:27.466   Z-Wave   sent "Heizung BB" off
2016-09-09 00:46:27.468   Z-Wave   sent "Heizung EB" off
2016-09-09 00:46:27.471   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:46:27.472   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:46:27.475   Z-Wave   received "Thermostat Bad EG" mode is off
2016-09-09 00:46:27.476   Z-Wave   received "Thermostat Bad EG" temperature update to 22.5 °C
2016-09-09 00:46:27.477   Z-Wave   received "Thermostat Bad EG" heat setpoint is 16.0 °C
2016-09-09 00:46:27.478   Z-Wave   received "030 - Thermostat Bad EG" status update battery level 0%
2016-09-09 00:46:27.479   Trigger   Thermostat Bad EG
2016-09-09 00:46:27.480   Script Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:46:27.490   Script Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:46:27.491   Z-Wave Error   Error in plugin execution:

Traceback (most recent call last):
  File "/Library/Application Support/Perceptive Automation/Indigo 6/IndigoPluginHost.app/Contents/PlugIns/serialinterface.py", line 438, in startCommThread
    self.processCommThread()
  File "/Library/Application Support/Perceptive Automation/Indigo 6/IndigoPluginHost.app/Contents/PlugIns/serialinterface.py", line 612, in processCommThread
    self.processQueueInPacket(packet)         # Subclass is required to define.
  File "zwaveinterface.py", line 1640, in processQueueInPacket
  File "zwaveinterface.py", line 1614, in _processFuncCall
  File "zwaveinterface.py", line 1665, in _processCommandReply
  File "zwaveinterface.py", line 1612, in _processFuncCall
  File "zwavecmd_battery.py", line 73, in _processBatteryLevelReply
  File "zwavecntrl_triggers.py", line 114, in executeTriggersFromParms
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:46:27.492   Z-Wave Error   exc type is <type 'exceptions.StandardError'>
2016-09-09 00:46:27.492   Z-Wave Error   restarting serial connection in 5.0 seconds
2016-09-09 00:46:27.493   Hue Lights Error   Error in plugin execution runConcurrentThread:

Traceback (most recent call last):
  File "plugin.py", line 719, in runConcurrentThread
  File "plugin.py", line 2442, in getBulbStatus
StandardError: ServerCommunicationError -- timeout waiting for response

2016-09-09 00:46:27.494   Hue Lights Error   plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
2016-09-09 00:46:27.494   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:46:27.495   Script Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:46:27.495   Z-Wave Error   failed to get module 002 info from controller (ServerCommunicationError -- timeout waiting for response)
2016-09-09 00:46:27.509   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:46:27.511   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:46:27.511   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 00:46:27.512   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:46:27.512   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:46:27.513   WebServer   Indigo Touch client connected from 192.168.0.93
2016-09-09 00:46:27.514   Z-Wave   found module included in controller with no matching device (missing or disabled): 006 - Relay Power Switch
2016-09-09 00:46:27.900   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 00:46:28.639   Trigger   NowDesc Change
2016-09-09 00:46:28.821   Application   Embedded script executor host started
2016-09-09 00:46:30.644   Z-Wave Error   send "Thermostat Buero DG" mode status request failed
2016-09-09 00:46:31.391   Interface Failure   lost connection with interface
2016-09-09 00:46:31.392   Trigger   Z-Wave Fehler
2016-09-09 00:46:31.401   Application   Reloading interface "Z-Wave 1.0.368"
2016-09-09 00:46:31.402   Application   Stopping interface "Z-Wave 1.0.368" (pid 72021)
2016-09-09 00:46:31.666   Z-Wave Error   failed to process node 076 awake processing
2016-09-09 00:46:31.681   Z-Wave Error   send goToSleep aborted (communication shutting down)
2016-09-09 00:46:31.682   Z-Wave Error   restarting serial connection in 5.0 seconds
2016-09-09 00:46:31.683   Z-Wave   closed connection to Z-Wave 3.95 static controller
2016-09-09 00:46:33.006   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:46:34.511   Application   Starting interface "Z-Wave 1.0.368" (pid 72513)
2016-09-09 00:46:34.933   Application   Started interface "Z-Wave 1.0.368"
2016-09-09 00:46:35.392   Interface Failure   lost connection with interface
2016-09-09 00:46:35.393   Trigger   Z-Wave Fehler
2016-09-09 00:46:35.412   Application   Reloading interface "Z-Wave 1.0.368"
2016-09-09 00:46:35.414   Application   Stopping interface "Z-Wave 1.0.368" (pid 72513)
2016-09-09 00:46:35.468   Z-Wave   closed connection to Z-Wave
2016-09-09 00:46:36.817   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:46:38.322   Application   Starting interface "Z-Wave 1.0.368" (pid 72518)
2016-09-09 00:46:38.735   Application   Started interface "Z-Wave 1.0.368"
2016-09-09 00:46:39.184   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:46:39.334   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 00:46:39.338   Z-Wave   found module included in controller with no matching device (missing or disabled): 006 - Relay Power Switch
2016-09-09 00:46:39.716   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 00:46:43.284   Z-Wave   received "Thermostat Bad KG" mode is off
2016-09-09 00:46:43.286   Z-Wave   received "Thermostat Bad KG" temperature update to 20.5 °C
2016-09-09 00:46:43.286   Z-Wave   received "Thermostat Bad KG" heat setpoint is 16.0 °C
2016-09-09 00:46:43.290   Z-Wave   received "085 - Thermostat Bad KG" status update battery level 32%
2016-09-09 00:46:43.290   Trigger   Thermostat Bad KG
2016-09-09 00:47:03.392   Application   Indigo Cocoa client disconnected
2016-09-09 00:47:03.463   Trigger   CamTreppe Reboot
2016-09-09 00:47:03.464   Action Group   CamTreppe Reboot
2016-09-09 00:47:03.494   Trigger   CamGarten links Reboot
2016-09-09 00:47:03.496   Action Group   CamGarten links Reboot
2016-09-09 00:47:03.511   Trigger   Security Spy Restart
2016-09-09 00:47:03.513   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 00:47:03.514   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:03.516   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:03.518   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:03.520   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:03.521   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:03.522   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:03.564   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:03.565   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 40301)
2016-09-09 00:47:04.673   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:06.179   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 72570)
2016-09-09 00:47:06.184   Airfoil Error   update: airfoil.isrunning() is returning false. Check to see if Airfoil is functioning correctly and that there is only a single copy of the application on your hard drive.
2016-09-09 00:47:06.411   Cynical SecuritySpy   API version 1.20
2016-09-09 00:47:06.424   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:06.462   Trigger   Security Spy Restart
2016-09-09 00:47:06.464   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 00:47:06.464   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:06.465   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:06.466   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:06.467   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:06.468   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:06.469   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:06.474   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:06.475   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 72570)
2016-09-09 00:47:07.092   Airfoil Error   update: airfoil.isrunning() is returning false. Check to see if Airfoil is functioning correctly and that there is only a single copy of the application on your hard drive.
2016-09-09 00:47:07.583   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:09.088   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 72571)
2016-09-09 00:47:09.101   Airfoil Error   update: airfoil.isrunning() is returning false. Check to see if Airfoil is functioning correctly and that there is only a single copy of the application on your hard drive.
2016-09-09 00:47:09.308   Cynical SecuritySpy   API version 1.20
2016-09-09 00:47:09.326   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:09.366   Trigger   Security Spy Restart
2016-09-09 00:47:09.368   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 00:47:09.369   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:09.370   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:09.371   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:09.372   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:09.373   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:09.374   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:47:09.378   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:09.379   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 72571)
2016-09-09 00:47:09.591   Trigger   Global Cache Restart
2016-09-09 00:47:09.657   Yamaha RX-Vx75 Receiver Debug   shutdown called
2016-09-09 00:47:09.673   Enigma2 HTTP-Control Debug   shutdown called
2016-09-09 00:47:10.391   Application   Quiting Indigo Server - received slow quit signal
2016-09-09 00:47:10.495   Z-Wave   closed connection to Z-Wave 3.95 static controller
2016-09-09 00:47:10.496   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:10.614   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 72573)
2016-09-09 00:47:10.619   Application   Quiting Indigo Server - stopping plugins
2016-09-09 00:47:10.620   Application   Stopping plugin "Enigma2 HTTP-Control 0.1" (pid 436)
2016-09-09 00:47:10.621   Application   Stopping plugin "WUnderground 0.9.39" (pid 441)
2016-09-09 00:47:10.622   Application   Stopping plugin "Hue Lights 1.3.27" (pid 437)
2016-09-09 00:47:10.622   Application   Stopping plugin "Action Collection 1.4.15" (pid 431)
2016-09-09 00:47:10.623   Application   Stopping plugin "Airfoil 1.1.14" (pid 433)
2016-09-09 00:47:10.623   Application   Stopping interface "Virtual Devices 1.0.14" (pid 440)
2016-09-09 00:47:10.624   Application   Stopping plugin "iTunes 1.1.7" (pid 438)
2016-09-09 00:47:10.624   Application   Stopping plugin "Timers and Pesters 1.2.2" (pid 439)
2016-09-09 00:47:10.625   Application   Stopping interface "Z-Wave 1.0.368" (pid 72518)
2016-09-09 00:47:10.625   Application   Stopping plugin "Yamaha RX-Vx75 Receiver 0.1.2" (pid 442)
2016-09-09 00:47:10.626   Application   Stopping plugin "Cynical Caché 1.6.7" (pid 659)
2016-09-09 00:47:10.626   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 72573)
2016-09-09 00:47:10.727   Application   Stopped plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:47:10.728   Application   Stopped plugin "WUnderground 0.9.39"
2016-09-09 00:47:10.729   Application   Stopped plugin "Hue Lights 1.3.27"
2016-09-09 00:47:10.729   Application   Stopped plugin "Action Collection 1.4.15"
2016-09-09 00:47:10.730   Application   Stopped plugin "Airfoil 1.1.14"
2016-09-09 00:47:10.730   Application   Stopped interface "Virtual Devices 1.0.14"
2016-09-09 00:47:10.731   Application   Stopped plugin "iTunes 1.1.7"
2016-09-09 00:47:10.731   Application   Stopped plugin "Timers and Pesters 1.2.2"
2016-09-09 00:47:10.732   Application   Stopped plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 00:47:10.732   Application   Stopped plugin "Cynical Caché 1.6.7"
2016-09-09 00:47:10.732   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:47:11.996   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:47:12.006   Application   Quiting Indigo Server - saving database
2016-09-09 00:47:12.698   Application   Quiting Indigo Server - saving preferences
2016-09-09 00:47:12.701   Application   Quiting Indigo Server - disconnecting clients
2016-09-09 00:47:13.830   Application   WebServer client disconnected
2016-09-09 00:47:16.362   Application   Quiting Indigo Server - unloading launchd plist
2016-09-09 00:47:16.406   Application   Quiting Indigo Server - complete
Because of the recurring Z-Wave errors I restarted indigo server.
Code: Select all
2016-09-09 00:48:17.095   Application   Starting Indigo Server version 6.1.10 (Mac OS X 10.11.6)
2016-09-09 00:48:17.098   Application   Loading attachments
2016-09-09 00:48:17.106   Application   "device target attachment.scpt" script loaded
2016-09-09 00:48:17.110   Application   "group target attachment.scpt" script loaded
2016-09-09 00:48:17.116   Application   "growl attachment.scpt" script loaded
2016-09-09 00:48:17.124   Application   "iTunes attachment.scpt" script loaded
2016-09-09 00:48:17.127   Application   "scenes attachment.scpt" script loaded
2016-09-09 00:48:17.129   Application   "time stamp attachment.scpt" script loaded
2016-09-09 00:48:17.653   Application   Loading database "/Users/Ben/Documents/Hohes Ufer 15.indiDb"
2016-09-09 00:48:18.759   Application   Loading plugin "Action Collection 1.4.15"
2016-09-09 00:48:18.761   Application   Starting plugin "Action Collection 1.4.15" (pid 492)
2016-09-09 00:48:18.762   Application   Loading interface "Z-Wave 1.0.368"
2016-09-09 00:48:18.763   Application   Starting interface "Z-Wave 1.0.368" (pid 493)
2016-09-09 00:48:18.764   Application   Loading plugin "Airfoil 1.1.14"
2016-09-09 00:48:18.765   Application   Starting plugin "Airfoil 1.1.14" (pid 494)
2016-09-09 00:48:18.767   Application   Loading plugin "Cynical Caché 1.6.7"
2016-09-09 00:48:18.767   Application   Starting plugin "Cynical Caché 1.6.7" (pid 495)
2016-09-09 00:48:18.769   Application   Loading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:48:18.770   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 496)
2016-09-09 00:48:18.772   Application   Loading plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:48:18.773   Application   Starting plugin "Enigma2 HTTP-Control 0.1" (pid 497)
2016-09-09 00:48:18.775   Application   Loading plugin "Hue Lights 1.3.27"
2016-09-09 00:48:18.776   Application   Starting plugin "Hue Lights 1.3.27" (pid 498)
2016-09-09 00:48:18.778   Application   Loading plugin "iTunes 1.1.7"
2016-09-09 00:48:18.779   Application   Starting plugin "iTunes 1.1.7" (pid 499)
2016-09-09 00:48:18.780   Application   Loading plugin "Timers and Pesters 1.2.2"
2016-09-09 00:48:18.781   Application   Starting plugin "Timers and Pesters 1.2.2" (pid 500)
2016-09-09 00:48:18.783   Application   Loading interface "Virtual Devices 1.0.14"
2016-09-09 00:48:18.784   Application   Starting interface "Virtual Devices 1.0.14" (pid 501)
2016-09-09 00:48:18.785   Application   Loading plugin "WUnderground 0.9.39"
2016-09-09 00:48:18.786   Application   Starting plugin "WUnderground 0.9.39" (pid 502)
2016-09-09 00:48:18.788   Application   Loading plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 00:48:18.789   Application   Starting plugin "Yamaha RX-Vx75 Receiver 0.1.2" (pid 503)
2016-09-09 00:48:18.790   Application   Found disabled interface "INSTEON Commands 2.0.6"
2016-09-09 00:48:18.791   Application   Found disabled plugin "DIRECTV DVR Control 1.1.1"
2016-09-09 00:48:18.792   Application   Found disabled plugin "EasyDAQ Relay Card 1.1.8"
2016-09-09 00:48:18.792   Application   Found disabled plugin "Global Property Manager 1.0.1"
2016-09-09 00:48:18.792   Application   Found disabled plugin "Growl 1.1.3"
2016-09-09 00:48:18.793   Application   Found disabled plugin "iCal Alarm Processor 1.1.1"
2016-09-09 00:48:18.793   Application   Found disabled plugin "NOAA Weather 1.1.2"
2016-09-09 00:48:18.793   Application   Found disabled plugin "SQL Logger 1.1.11"
2016-09-09 00:48:18.794   Application   Found disabled plugin "Vera Bridge 1.0.10"
2016-09-09 00:48:18.794   Application   Found disabled plugin "WeatherSnoop 2.0.10"
2016-09-09 00:48:18.911   Application   Bonjour registered "Indigo - Hohes Ufer 15"
2016-09-09 00:48:21.907   Error   plugin "WUnderground 0.9.39" (pid 502) failed to start -- restarting in 5 seconds
2016-09-09 00:48:21.908   Error   plugin "Airfoil 1.1.14" (pid 494) failed to start -- restarting in 5 seconds
2016-09-09 00:48:21.908   Error   plugin "iTunes 1.1.7" (pid 499) failed to start -- restarting in 5 seconds
2016-09-09 00:48:27.908   Application   Reloading plugin "WUnderground 0.9.39"
2016-09-09 00:48:27.909   Application   Starting plugin "WUnderground 0.9.39" (pid 535)
2016-09-09 00:48:27.911   Application   Reloading plugin "Airfoil 1.1.14"
2016-09-09 00:48:27.912   Application   Starting plugin "Airfoil 1.1.14" (pid 536)
2016-09-09 00:48:27.913   Application   Reloading plugin "iTunes 1.1.7"
2016-09-09 00:48:27.914   Application   Starting plugin "iTunes 1.1.7" (pid 537)
2016-09-09 00:48:47.637   Application   WebServer client connected
2016-09-09 00:49:03.643   Application   Indigo Cocoa client authenticated (192.168.0.115)
2016-09-09 00:49:15.648   Hue Lights Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:49:15.648   Application   Stopping plugin "Hue Lights 1.3.27" (pid 498)
2016-09-09 00:49:15.648   Enigma2 HTTP-Control Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:49:15.648   Application   Stopping plugin "Enigma2 HTTP-Control 0.1" (pid 497)
2016-09-09 00:49:15.649   Virtual Devices Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:49:15.649   Application   Stopping interface "Virtual Devices 1.0.14" (pid 501)
2016-09-09 00:49:15.649   Z-Wave Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:49:15.652   Application   Stopping interface "Z-Wave 1.0.368" (pid 493)
2016-09-09 00:49:15.662   Timers and Pesters Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:49:15.663   Application   Stopping plugin "Timers and Pesters 1.2.2" (pid 500)
2016-09-09 00:49:15.663   Cynical Caché Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 00:49:15.663   Application   Stopping plugin "Cynical Caché 1.6.7" (pid 495)
2016-09-09 00:49:15.669   WebServer   started on port 8176 -- authentication disabled
2016-09-09 00:49:15.669   WebServer   loaded plugin "Weather Conditions"
2016-09-09 00:49:15.669   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/css"
2016-09-09 00:49:15.669   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/images"
2016-09-09 00:49:15.670   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/js"
2016-09-09 00:49:15.670   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/static"
2016-09-09 00:49:15.685   Cynical SecuritySpy   API version 1.20
2016-09-09 00:49:15.720   Application   Started plugin "Action Collection 1.4.15"
2016-09-09 00:49:15.749   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:49:15.825   Application   Started plugin "iTunes 1.1.7"
2016-09-09 00:49:15.848   Application   Started plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 00:49:15.849   Yamaha RX-Vx75 Receiver Debug   startup called
2016-09-09 00:49:15.850   Application   Started plugin "Airfoil 1.1.14"
2016-09-09 00:49:16.704   Application   Stopped plugin "Cynical Caché 1.6.7"
2016-09-09 00:49:16.705   Application   Stopped plugin "Timers and Pesters 1.2.2"
2016-09-09 00:49:16.706   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:49:16.717   Application   Stopped interface "Virtual Devices 1.0.14"
2016-09-09 00:49:16.720   Application   Stopped plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:49:16.721   Application   Stopped plugin "Hue Lights 1.3.27"
2016-09-09 00:49:18.839   Application   Started plugin "WUnderground 0.9.39"
2016-09-09 00:49:43.050   Application   Disabling plugin "WUnderground 0.9.39"
2016-09-09 00:49:43.050   Application   Stopping plugin "WUnderground 0.9.39" (pid 535)
2016-09-09 00:49:55.076   WUnderground Error   Unable to reach Weather Underground. Reason: URLError - <urlopen error [Errno 8] nodename nor servname provided, or not known>
2016-09-09 00:49:55.076   WUnderground Error   Sleeping until next scheduled poll.
2016-09-09 00:49:58.104   Error   process (pid 535) failed to quit after polite request -- forcing it to quit now
2016-09-09 00:49:58.104   Application   Stopped plugin "WUnderground 0.9.39"
2016-09-09 00:50:00.908   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:50:00.909   Schedule   Bad KG Wunsch
2016-09-09 00:50:00.909   Action Group   Bad KG An/Aus
2016-09-09 00:50:00.911   Schedule   Bad EG Wunsch
2016-09-09 00:50:00.912   Action Group   Bad EG An/Aus
2016-09-09 00:50:00.912   Schedule   Kueche Wunsch
2016-09-09 00:50:00.912   Action Group   Kueche An/Aus
2016-09-09 00:50:00.913   Schedule   SchlaZi KG Wunsch
2016-09-09 00:50:00.913   Action Group   SchlaZi KG An/Aus
2016-09-09 00:50:00.913   Schedule   WoZi EG Wunsch
2016-09-09 00:50:00.913   Action Group   WoZi EG An/Aus
2016-09-09 00:50:00.913   Schedule   DG Wunsch
2016-09-09 00:50:00.914   Action Group   DG An/Aus
2016-09-09 00:50:00.950   Error   unable to execute action -- device interface Z-Wave not running
2016-09-09 00:50:00.951   Error   unable to execute action -- device interface Z-Wave not running
2016-09-09 00:50:05.105   Application   Embedded script executor host started
2016-09-09 00:50:52.249   Application   Reloading interface "Z-Wave 1.0.368"
2016-09-09 00:50:52.251   Application   Starting interface "Z-Wave 1.0.368" (pid 826)
2016-09-09 00:50:56.669   Application   Started interface "Z-Wave 1.0.368"
2016-09-09 00:50:56.945   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 00:50:57.078   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 00:50:57.081   Z-Wave   found module included in controller with no matching device (missing or disabled): 006 - Relay Power Switch
2016-09-09 00:50:57.441   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 00:51:00.908   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:51:03.110   Z-Wave   received "156 - Funktaster Fenster" status update battery level 84%
2016-09-09 00:51:03.110   Trigger   DG FT Fenster
2016-09-09 00:51:10.269   Z-Wave   received "KG Lux" sensor update to 0 lux
2016-09-09 00:51:10.435   Z-Wave   received "DG Luftfeuchte" sensor update to 75%
2016-09-09 00:51:10.860   Z-Wave   received "KG Luftfeuchte" sensor update to 75%
2016-09-09 00:51:10.898   Z-Wave   received "KG Temperatur" sensor update to 19.2 °C
2016-09-09 00:51:12.880   Z-Wave   received "042 - KG Bewegung" status update battery level 61%
2016-09-09 00:51:12.881   Trigger   KG BW
2016-09-09 00:51:20.426   Z-Wave   received "Thermostat Bad KG" mode is off
2016-09-09 00:51:20.427   Z-Wave   received "Thermostat Bad KG" temperature update to 20.5 °C
2016-09-09 00:51:20.429   Z-Wave   received "Thermostat Bad KG" heat setpoint is 16.0 °C
2016-09-09 00:51:20.429   Z-Wave   received "085 - Thermostat Bad KG" status update battery level 32%
2016-09-09 00:51:20.429   Trigger   Thermostat Bad KG
2016-09-09 00:51:27.707   Trigger   Security Spy Restart
2016-09-09 00:51:27.707   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 00:51:27.708   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:51:27.709   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:51:27.710   Trigger   CamGarten links Reboot
2016-09-09 00:51:27.710   Action Group   CamGarten links Reboot
2016-09-09 00:51:27.711   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:51:27.712   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:51:27.713   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:51:27.714   Trigger   CamTreppe Reboot
2016-09-09 00:51:27.714   Action Group   CamTreppe Reboot
2016-09-09 00:51:27.715   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:51:27.720   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:51:27.720   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 496)
2016-09-09 00:51:28.825   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:51:30.329   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 890)
2016-09-09 00:51:34.461   Z-Wave   received "Bad KG Lux" sensor update to 0 lux
2016-09-09 00:51:34.471   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:51:34.476   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:51:34.480   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:51:34.486   Z-Wave   received "Bad KG Temperatur" sensor update to 21.4 °C
2016-09-09 00:51:34.553   Cynical SecuritySpy   API version 1.20
2016-09-09 00:51:34.565   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:51:51.543   Cynical SecuritySpy Error   CamTreppe 70900,800 Error communicating with the network device "2 Treppe"
2016-09-09 00:51:51.665   Cynical SecuritySpy Error   CamGarten links 70900,800 Error communicating with the network device "4 Garten links"
2016-09-09 00:51:54.212   Application   Reloading plugin "Cynical Caché 1.6.7"
2016-09-09 00:51:54.214   Application   Starting plugin "Cynical Caché 1.6.7" (pid 929)
2016-09-09 00:51:57.784   Error   email send connection failed
2016-09-09 00:51:57.784   Error   email re-send scheduled in 10 minutes
2016-09-09 00:51:58.433   Cynical Caché   API version 1.20
2016-09-09 00:51:58.445   Application   Started plugin "Cynical Caché 1.6.7"
2016-09-09 00:52:00.904   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:52:12.515   Cynical SecuritySpy Error   CamTreppe 8440,32 Error communicating with the network device "2 Treppe"
2016-09-09 00:52:12.518   Cynical SecuritySpy Error   CamGarten links 8440,32 Error communicating with the network device "4 Garten links"
2016-09-09 00:52:14.758   Z-Wave   received "Thermostat WoZi EG" mode is off
2016-09-09 00:52:14.762   Z-Wave   received "Thermostat WoZi EG" temperature update to 23.0 °C
2016-09-09 00:52:14.763   Z-Wave   received "Thermostat WoZi EG" heat setpoint is 16.0 °C
2016-09-09 00:52:14.763   Z-Wave   received "142 - Thermostat WoZi EG" status update battery level 96%
2016-09-09 00:52:14.767   Trigger   Thermostat WoZi EG
2016-09-09 00:52:37.077   Z-Wave   received "Thermostat Kueche" mode is off
2016-09-09 00:52:37.079   Z-Wave   received "Thermostat Kueche" temperature update to 24.0 °C
2016-09-09 00:52:37.080   Z-Wave   received "Thermostat Kueche" heat setpoint is 16.0 °C
2016-09-09 00:52:37.080   Z-Wave   received "141 - Thermostat Kueche" status update battery level 0%
2016-09-09 00:52:37.081   Trigger   Thermostat Kueche
2016-09-09 00:53:00.902   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:53:31.384   Trigger   CamTreppe Reboot
2016-09-09 00:53:31.384   Action Group   CamTreppe Reboot
2016-09-09 00:53:31.399   Trigger   CamGarten links Reboot
2016-09-09 00:53:31.399   Action Group   CamGarten links Reboot
2016-09-09 00:53:32.179   Z-Wave   received "Thermostat WoZi DG" mode is off
2016-09-09 00:53:32.180   Z-Wave   received "Thermostat WoZi DG" temperature update to 26.0 °C
2016-09-09 00:53:32.183   Trigger   DG TempDisp
2016-09-09 00:53:32.184   Z-Wave   received "Thermostat WoZi DG" heat setpoint is 18.0 °C
2016-09-09 00:53:32.185   Z-Wave   received "113 - Thermostat WoZi DG" status update battery level 6%
2016-09-09 00:53:32.185   Trigger   Thermostat WoZi DG
2016-09-09 00:53:41.386   Error   because embedded scripts execute sequentially they must complete their execution within 10 seconds.
2016-09-09 00:53:41.387   Error   modify the script to exit quickly or convert it to an external file (not embedded).
2016-09-09 00:53:41.387   Application   Stopping embedded script executor host (pid 740)
2016-09-09 00:53:41.394   Script Error   embedded script: <urlopen error [Errno 4] Interrupted system call>
2016-09-09 00:53:41.394   Script Error   Exception Traceback (most recent call shown last):

     embedded script, line 4, at top level
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 126, in urlopen
       return _opener.open(url, data, timeout)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 391, in open
       response = self._open(req, data)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 409, in _open
       '_open', req)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 369, in _call_chain
       result = func(*args)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 1181, in http_open
       return self.do_open(httplib.HTTPConnection, req)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 1156, in do_open
       raise URLError(err)
URLError: <urlopen error [Errno 4] Interrupted system call>

2016-09-09 00:53:42.420   Application   Stopped "embedded script executor host"
2016-09-09 00:53:46.604   Application   Embedded script executor host started
2016-09-09 00:53:51.378   Cynical SecuritySpy Error   CamHaustür 70900,800 Error communicating with the network device "3 Haustuer"
2016-09-09 00:53:51.380   Cynical SecuritySpy Error   CamWintergarten 70900,800 Error communicating with the network device "5 Wintergarten"
2016-09-09 00:53:51.381   Cynical SecuritySpy Error   CamGarten rechts 70900,800 Error communicating with the network device "6 Garten rechts"
2016-09-09 00:53:51.381   Cynical SecuritySpy Error   CamGaragenplatz 70900,800 Error communicating with the network device "1 Garagenplatz"
2016-09-09 00:53:53.377   Cynical SecuritySpy Error   CamTreppe 70900,800 Error communicating with the network device "2 Treppe"
2016-09-09 00:53:53.378   Cynical SecuritySpy Error   CamGarten links 70900,800 Error communicating with the network device "4 Garten links"
2016-09-09 00:53:56.630   Error   because embedded scripts execute sequentially they must complete their execution within 10 seconds.
2016-09-09 00:53:56.630   Error   modify the script to exit quickly or convert it to an external file (not embedded).
2016-09-09 00:53:56.630   Application   Stopping embedded script executor host (pid 1116)
2016-09-09 00:53:56.632   Script Error   embedded script: <urlopen error [Errno 4] Interrupted system call>
2016-09-09 00:53:56.632   Script Error   Exception Traceback (most recent call shown last):

     embedded script, line 4, at top level
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 126, in urlopen
       return _opener.open(url, data, timeout)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 391, in open
       response = self._open(req, data)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 409, in _open
       '_open', req)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 369, in _call_chain
       result = func(*args)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 1181, in http_open
       return self.do_open(httplib.HTTPConnection, req)
     File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 1156, in do_open
       raise URLError(err)
URLError: <urlopen error [Errno 4] Interrupted system call>

2016-09-09 00:53:57.654   Application   Stopped "embedded script executor host"
2016-09-09 00:54:00.901   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:54:01.835   Application   Embedded script executor host started
2016-09-09 00:54:01.887   Trigger   DG Mess
2016-09-09 00:54:01.887   Action Group   DG An/Aus
2016-09-09 00:55:00.902   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:55:00.902   Schedule   Bad KG Wunsch
2016-09-09 00:55:00.902   Action Group   Bad KG An/Aus
2016-09-09 00:55:00.903   Schedule   Bad EG Wunsch
2016-09-09 00:55:00.903   Action Group   Bad EG An/Aus
2016-09-09 00:55:00.903   Schedule   Kueche Wunsch
2016-09-09 00:55:00.903   Action Group   Kueche An/Aus
2016-09-09 00:55:00.903   Schedule   SchlaZi KG Wunsch
2016-09-09 00:55:00.903   Action Group   SchlaZi KG An/Aus
2016-09-09 00:55:00.904   Schedule   WoZi EG Wunsch
2016-09-09 00:55:00.904   Action Group   WoZi EG An/Aus
2016-09-09 00:55:00.904   Schedule   DG Wunsch
2016-09-09 00:55:00.904   Action Group   DG An/Aus
2016-09-09 00:55:01.117   Z-Wave   sent "Heizung BB" off
2016-09-09 00:55:01.142   Z-Wave   sent "Heizung EB" off
2016-09-09 00:55:06.479   Z-Wave   received "Thermostat Bad EG" mode is off
2016-09-09 00:55:06.479   Z-Wave   received "Thermostat Bad EG" temperature update to 22.5 °C
2016-09-09 00:55:06.481   Z-Wave   received "Thermostat Bad EG" heat setpoint is 16.0 °C
2016-09-09 00:55:06.482   Z-Wave   received "030 - Thermostat Bad EG" status update battery level 0%
2016-09-09 00:55:06.482   Trigger   Thermostat Bad EG
2016-09-09 00:55:30.684   Trigger   CamGarten links Reboot
2016-09-09 00:55:30.684   Action Group   CamGarten links Reboot
2016-09-09 00:55:30.728   Z-Wave   received "Bad KG Lux" sensor update to 0 lux
2016-09-09 00:55:30.798   Z-Wave   received "Bad KG Luftfeuchte" sensor update to 46%
2016-09-09 00:55:30.871   Z-Wave   received "Bad KG Temperatur" sensor update to 21.3 °C
2016-09-09 00:55:32.578   Trigger   CamTreppe Reboot
2016-09-09 00:55:32.578   Action Group   CamTreppe Reboot
2016-09-09 00:55:52.440   Cynical SecuritySpy Error   CamGarten links 70900,800 Error communicating with the network device "4 Garten links"
2016-09-09 00:55:53.616   Z-Wave   received "Thermostat Buero DG" mode is off
2016-09-09 00:55:53.617   Z-Wave   received "Thermostat Buero DG" temperature update to 24.5 °C
2016-09-09 00:55:53.620   Z-Wave   received "Thermostat Buero DG" heat setpoint is 18.0 °C
2016-09-09 00:55:53.621   Z-Wave   received "076 - Thermostat Buero DG" status update battery level 61%
2016-09-09 00:55:53.621   Trigger   Thermostat Buero DG
2016-09-09 00:55:54.465   Cynical SecuritySpy Error   CamTreppe 70900,800 Error communicating with the network device "2 Treppe"
2016-09-09 00:56:00.897   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 00:56:12.546   Cynical SecuritySpy Error   CamGarten links 8440,32 Error communicating with the network device "4 Garten links"
2016-09-09 00:56:13.684   Cynical SecuritySpy Error   CamTreppe 8440,32 Error communicating with the network device "2 Treppe"
2016-09-09 00:56:17.260   Application   Reloading plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:56:17.262   Application   Starting plugin "Enigma2 HTTP-Control 0.1" (pid 1366)
2016-09-09 00:56:21.482   Application   Started plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:56:21.482   Enigma2 HTTP-Control Debug   startup called
2016-09-09 00:56:21.736   Trigger   NowDesc Change
2016-09-09 00:56:21.911   Z-Wave   received "Thermostat Bad KG" mode is off
2016-09-09 00:56:21.912   Z-Wave   received "Thermostat Bad KG" temperature update to 20.5 °C
2016-09-09 00:56:21.915   Z-Wave   received "Thermostat Bad KG" heat setpoint is 16.0 °C
2016-09-09 00:57:01.150   Trigger   NowDesc Change
2016-09-09 00:57:07.893   Application   Indigo Cocoa client disconnected (192.168.0.115)
2016-09-09 00:57:15.925   Z-Wave   received "Thermostat WoZi EG" mode is off
2016-09-09 00:57:15.925   Z-Wave   received "Thermostat WoZi EG" temperature update to 23.0 °C
2016-09-09 00:57:15.930   Z-Wave   received "Thermostat WoZi EG" heat setpoint is 16.0 °C
2016-09-09 00:57:19.222   Z-Wave   received "Durchgang Lux" sensor update to 0 lux
2016-09-09 00:57:19.226   Z-Wave   received "Durchgang Luftfeuchte" sensor update to 75%
2016-09-09 00:57:19.261   Z-Wave   received "Durchgang Temperatur" sensor update to 18.0 °C
2016-09-09 00:57:21.930   Z-Wave   received "086 - Durchgang Bewegung" status update battery level 59%
2016-09-09 00:57:21.931   Trigger   Durchgang BW
2016-09-09 00:57:37.528   Trigger   CamTreppe Reboot
2016-09-09 00:57:37.528   Action Group   CamTreppe Reboot
2016-09-09 00:57:37.549   Trigger   CamGarten links Reboot
2016-09-09 00:57:37.549   Action Group   CamGarten links Reboot
2016-09-09 00:57:37.562   Z-Wave   received "Thermostat Kueche" mode is off
2016-09-09 00:57:37.563   Z-Wave   received "Thermostat Kueche" temperature update to 24.0 °C
2016-09-09 00:57:37.564   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 32] Broken pipe
2016-09-09 00:57:37.565   Trigger   Security Spy Restart
2016-09-09 00:57:37.566   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:37.566   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:37.567   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:37.568   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:37.569   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:37.570   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:37.571   Z-Wave   received "Thermostat Kueche" heat setpoint is 16.0 °C
2016-09-09 00:57:37.595   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:37.595   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 890)
2016-09-09 00:57:38.707   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:40.211   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 1509)
2016-09-09 00:57:44.424   Cynical SecuritySpy   API version 1.20
2016-09-09 00:57:44.440   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:44.477   Trigger   Security Spy Restart
2016-09-09 00:57:44.478   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 00:57:44.478   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:44.479   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:44.479   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:44.480   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:44.481   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:44.481   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:44.485   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:44.485   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 1509)
2016-09-09 00:57:45.599   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:47.103   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 1518)
2016-09-09 00:57:51.319   Cynical SecuritySpy   API version 1.20
2016-09-09 00:57:51.335   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:51.372   Trigger   Security Spy Restart
2016-09-09 00:57:51.372   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 00:57:51.373   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:51.373   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:51.374   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:51.375   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:51.375   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:51.376   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 00:57:51.380   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:51.380   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 1518)
2016-09-09 00:57:52.491   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:52.856   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 1520)
I disabled every web related schedule and trigger (e.g. SecuritySpy restart as the triggered event should send an e-mail) and the wunderground plugin (now I know disabling the wunderground plugin is not necessary). Then I rebooted the whole Mac.
Code: Select all
2016-09-09 00:57:52.891   Yamaha RX-Vx75 Receiver Debug   shutdown called
2016-09-09 00:57:52.892   Application   Quiting Indigo Server - received slow quit signal
2016-09-09 00:57:52.892   Application   Quiting Indigo Server - stopping plugins
2016-09-09 00:57:52.892   Application   Stopping plugin "Enigma2 HTTP-Control 0.1" (pid 1366)
2016-09-09 00:57:52.893   Application   Stopping plugin "Action Collection 1.4.15" (pid 492)
2016-09-09 00:57:52.893   Application   Stopping plugin "Airfoil 1.1.14" (pid 536)
2016-09-09 00:57:52.893   Application   Stopping plugin "iTunes 1.1.7" (pid 537)
2016-09-09 00:57:52.893   Application   Stopping interface "Z-Wave 1.0.368" (pid 826)
2016-09-09 00:57:52.893   Application   Stopping plugin "Yamaha RX-Vx75 Receiver 0.1.2" (pid 503)
2016-09-09 00:57:52.893   Application   Stopping plugin "Cynical Caché 1.6.7" (pid 929)
2016-09-09 00:57:52.893   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 1520)
2016-09-09 00:57:52.897   Enigma2 HTTP-Control Debug   shutdown called
2016-09-09 00:57:52.938   Trigger   Global Cache Restart
2016-09-09 00:57:52.994   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:57:53.738   Z-Wave   closed connection to Z-Wave 3.95 static controller
2016-09-09 00:57:53.892   Application   Stopped plugin "Airfoil 1.1.14"
2016-09-09 00:57:53.892   Application   Stopped plugin "iTunes 1.1.7"
2016-09-09 00:57:53.993   Application   Stopped plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:57:53.993   Application   Stopped plugin "Action Collection 1.4.15"
2016-09-09 00:57:53.993   Application   Stopped plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 00:57:53.994   Application   Stopped plugin "Cynical Caché 1.6.7"
2016-09-09 00:57:55.095   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 00:57:55.100   Application   Quiting Indigo Server - saving database
2016-09-09 00:57:55.874   Application   Quiting Indigo Server - saving preferences
2016-09-09 00:57:55.876   Application   Quiting Indigo Server - disconnecting clients
2016-09-09 00:57:56.315   Application   WebServer client disconnected
2016-09-09 00:57:56.432   Application   Quiting Indigo Server - unloading launchd plist
2016-09-09 00:57:56.467   Application   Quiting Indigo Server - complete
The log after reboot:
Code: Select all
2016-09-09 00:59:17.600   Application   Starting Indigo Server version 6.1.10 (Mac OS X 10.11.6)
2016-09-09 00:59:17.601   Application   Loading attachments
2016-09-09 00:59:17.605   Application   "device target attachment.scpt" script loaded
2016-09-09 00:59:17.607   Application   "group target attachment.scpt" script loaded
2016-09-09 00:59:17.612   Application   "growl attachment.scpt" script loaded
2016-09-09 00:59:17.620   Application   "iTunes attachment.scpt" script loaded
2016-09-09 00:59:17.625   Application   "scenes attachment.scpt" script loaded
2016-09-09 00:59:17.635   Application   "time stamp attachment.scpt" script loaded
2016-09-09 00:59:18.107   Application   Loading database "/Users/Ben/Documents/Hohes Ufer 15.indiDb"
2016-09-09 00:59:19.301   Application   Loading plugin "Action Collection 1.4.15"
2016-09-09 00:59:19.305   Application   Starting plugin "Action Collection 1.4.15" (pid 395)
2016-09-09 00:59:19.306   Application   Loading interface "Z-Wave 1.0.368"
2016-09-09 00:59:19.308   Application   Starting interface "Z-Wave 1.0.368" (pid 396)
2016-09-09 00:59:19.309   Application   Loading plugin "Airfoil 1.1.14"
2016-09-09 00:59:19.310   Application   Starting plugin "Airfoil 1.1.14" (pid 397)
2016-09-09 00:59:19.312   Application   Loading plugin "Cynical Caché 1.6.7"
2016-09-09 00:59:19.313   Application   Starting plugin "Cynical Caché 1.6.7" (pid 398)
2016-09-09 00:59:19.314   Application   Loading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 00:59:19.315   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 399)
2016-09-09 00:59:19.317   Application   Loading plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 00:59:19.318   Application   Starting plugin "Enigma2 HTTP-Control 0.1" (pid 400)
2016-09-09 00:59:19.320   Application   Loading plugin "Hue Lights 1.3.27"
2016-09-09 00:59:19.321   Application   Starting plugin "Hue Lights 1.3.27" (pid 401)
2016-09-09 00:59:19.323   Application   Loading plugin "iTunes 1.1.7"
2016-09-09 00:59:19.325   Application   Starting plugin "iTunes 1.1.7" (pid 402)
2016-09-09 00:59:19.335   Application   Loading plugin "Timers and Pesters 1.2.2"
2016-09-09 00:59:19.344   Application   Starting plugin "Timers and Pesters 1.2.2" (pid 403)
2016-09-09 00:59:19.346   Application   Loading interface "Virtual Devices 1.0.14"
2016-09-09 00:59:19.354   Application   Starting interface "Virtual Devices 1.0.14" (pid 404)
2016-09-09 00:59:19.357   Application   Loading plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 00:59:19.365   Application   Starting plugin "Yamaha RX-Vx75 Receiver 0.1.2" (pid 405)
2016-09-09 00:59:19.367   Application   Found disabled interface "INSTEON Commands 2.0.6"
2016-09-09 00:59:19.367   Application   Found disabled plugin "DIRECTV DVR Control 1.1.1"
2016-09-09 00:59:19.368   Application   Found disabled plugin "EasyDAQ Relay Card 1.1.8"
2016-09-09 00:59:19.368   Application   Found disabled plugin "Global Property Manager 1.0.1"
2016-09-09 00:59:19.369   Application   Found disabled plugin "Growl 1.1.3"
2016-09-09 00:59:19.369   Application   Found disabled plugin "iCal Alarm Processor 1.1.1"
2016-09-09 00:59:19.370   Application   Found disabled plugin "NOAA Weather 1.1.2"
2016-09-09 00:59:19.370   Application   Found disabled plugin "SQL Logger 1.1.11"
2016-09-09 00:59:19.371   Application   Found disabled plugin "Vera Bridge 1.0.10"
2016-09-09 00:59:19.371   Application   Found disabled plugin "WeatherSnoop 2.0.10"
2016-09-09 00:59:19.372   Application   Found disabled plugin "WUnderground 0.9.39"
2016-09-09 00:59:19.422   Application   Bonjour registered "Indigo - Hohes Ufer 15"
2016-09-09 01:00:07.656   Application   WebServer client connected
2016-09-09 01:00:07.662   Z-Wave Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 01:00:07.662   Application   Stopping interface "Z-Wave 1.0.368" (pid 396)
2016-09-09 01:00:07.663   Cynical Caché Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 01:00:07.664   Application   Stopping plugin "Cynical Caché 1.6.7" (pid 398)
2016-09-09 01:00:07.664   Hue Lights Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 01:00:07.664   Application   Stopping plugin "Hue Lights 1.3.27" (pid 401)
2016-09-09 01:00:07.665   Cynical SecuritySpy Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 01:00:07.666   Application   Stopping plugin "Cynical SecuritySpy 1.6.3" (pid 399)
2016-09-09 01:00:07.666   Enigma2 HTTP-Control Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 01:00:07.666   Application   Stopping plugin "Enigma2 HTTP-Control 0.1" (pid 400)
2016-09-09 01:00:07.666   Action Collection Error   Error in plugin execution InitializeMain: ServerCommunicationError -- timeout waiting for response
2016-09-09 01:00:07.667   Application   Stopping plugin "Action Collection 1.4.15" (pid 395)
2016-09-09 01:00:07.668   WebServer   started on port 8176 -- authentication disabled
2016-09-09 01:00:07.668   WebServer   loaded plugin "Weather Conditions"
2016-09-09 01:00:07.668   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/css"
2016-09-09 01:00:07.668   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/images"
2016-09-09 01:00:07.668   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/js"
2016-09-09 01:00:07.668   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/static"
2016-09-09 01:00:07.700   Application   Started interface "Virtual Devices 1.0.14"
2016-09-09 01:00:07.703   Application   Started plugin "Airfoil 1.1.14"
2016-09-09 01:00:07.711   Application   Started plugin "iTunes 1.1.7"
2016-09-09 01:00:07.714   Application   Started plugin "Timers and Pesters 1.2.2"
2016-09-09 01:00:07.741   Application   Started plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 01:00:07.742   Yamaha RX-Vx75 Receiver Debug   startup called
2016-09-09 01:00:08.669   Application   Stopped plugin "Action Collection 1.4.15"
2016-09-09 01:00:08.669   Application   Stopped plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 01:00:08.670   Application   Stopped plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 01:00:08.672   Application   Stopped plugin "Hue Lights 1.3.27"
2016-09-09 01:00:08.675   Application   Stopped plugin "Cynical Caché 1.6.7"
2016-09-09 01:00:08.675   Application   Stopped interface "Z-Wave 1.0.368"
2016-09-09 01:01:00.420   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 01:01:00.456   Error   unable to execute action -- device plugin Action Collection not running
2016-09-09 01:01:38.140   Application   Indigo Cocoa client authenticated (192.168.0.115)
2016-09-09 01:02:00.417   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 01:02:00.440   Error   unable to execute action -- device plugin Action Collection not running
2016-09-09 01:02:29.474   Application   Reloading interface "Z-Wave 1.0.368"
2016-09-09 01:02:29.476   Application   Starting interface "Z-Wave 1.0.368" (pid 770)
2016-09-09 01:02:33.929   Application   Started interface "Z-Wave 1.0.368"
2016-09-09 01:02:34.213   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 01:02:34.343   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 01:02:34.347   Z-Wave   found module included in controller with no matching device (missing or disabled): 006 - Relay Power Switch
2016-09-09 01:02:34.724   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 01:02:38.240   Z-Wave   received "Thermostat Kueche" mode is off
2016-09-09 01:02:38.242   Z-Wave   received "Thermostat Kueche" temperature update to 24.0 °C
2016-09-09 01:02:38.243   Z-Wave   received "Thermostat Kueche" heat setpoint is 16.0 °C
2016-09-09 01:02:38.243   Z-Wave   received "141 - Thermostat Kueche" status update battery level 0%
2016-09-09 01:02:38.243   Trigger   Thermostat Kueche
2016-09-09 01:02:38.243   Error   unable to execute action -- device plugin Action Collection not running
2016-09-09 01:02:48.735   Application   Reloading plugin "Cynical Caché 1.6.7"
2016-09-09 01:02:48.738   Application   Starting plugin "Cynical Caché 1.6.7" (pid 804)
2016-09-09 01:02:52.969   Cynical Caché   API version 1.20
2016-09-09 01:02:52.981   Application   Started plugin "Cynical Caché 1.6.7"
2016-09-09 01:02:53.448   Application   Reloading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 01:02:53.449   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 817)
2016-09-09 01:02:57.676   Cynical SecuritySpy   API version 1.20
2016-09-09 01:02:57.691   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 01:03:00.415   Error   unable to execute action -- device plugin Enigma2 HTTP-Control not running
2016-09-09 01:03:00.437   Error   unable to execute action -- device plugin Action Collection not running
2016-09-09 01:03:02.533   Application   Reloading plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 01:03:02.534   Application   Starting plugin "Enigma2 HTTP-Control 0.1" (pid 836)
2016-09-09 01:03:06.758   Application   Started plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 01:03:06.759   Enigma2 HTTP-Control Debug   startup called
2016-09-09 01:03:07.039   Trigger   NowDesc Change
2016-09-09 01:03:11.235   Application   Embedded script executor host started
2016-09-09 01:03:30.832   Z-Wave   received "Bad KG Lux" sensor update to 1 lux
2016-09-09 01:03:30.833   Error   unable to execute action -- device plugin Action Collection not running
The last error was the trigger of this event with 2 actions:
Code: Select all
insert state (sensorvalue.ui) for device 1723158162 into variable: 1169003123
execute embedded AppleScript "
set value of variable "KombiBadKG" to value of variable "BadKGTemp" & " - " & my replaceText("%", " %", value of variable "BadKGHum") & " - " & value of variable "BadKGLux"
on replaceText(find, replace, subject)
   set prevTIDs to text item delimiters of AppleScript
   set text item delimiters of AppleScript to find
   set subject to text items of subject
   set text item delimiters of AppleScript to replace
   set subject to "" & subject
   set text item delimiters of AppleScript to prevTIDs
   return subject
end replaceText
"

jay (support) wrote:
That's a built-in (hidden) plugin that supplies a bunch of actions. It should never be disabled (and there's no way to do so in the UI), so I'm not sure how you got it into that state. What exactly did you to to disable the other plugins?

That plugin doesn't use the network at all - the error is because the plugin somehow got disabled.
I used the plugin pull-down menu in the indigo client ui.

DaveL17 wrote:
Can you please PM me some log segments around that time? WUnderground should recognize there's no WAN and wait until the next poll interval.


Sent from my iPhone using Tapatalk
Not necessary as your plugin worked as expected.

matt (support) wrote:
Hi Be,

Can you copy/paste into a reply a chunk from your Event Log showing before/after the power outage? I want to see if there are any other clues in there as to what is going wrong.
Here's the log after internet is working again and a complete reboot:
Code: Select all
2016-09-09 13:12:56.474   Application   Starting Indigo Server version 6.1.10 (Mac OS X 10.11.6)
2016-09-09 13:12:56.474   Application   Loading attachments
2016-09-09 13:12:56.477   Application   "device target attachment.scpt" script loaded
2016-09-09 13:12:56.478   Application   "group target attachment.scpt" script loaded
2016-09-09 13:12:56.481   Application   "growl attachment.scpt" script loaded
2016-09-09 13:12:56.487   Application   "iTunes attachment.scpt" script loaded
2016-09-09 13:12:56.489   Application   "scenes attachment.scpt" script loaded
2016-09-09 13:12:56.492   Application   "time stamp attachment.scpt" script loaded
2016-09-09 13:12:56.840   Application   Loading database "/Users/Ben/Documents/Hohes Ufer 15.indiDb"
2016-09-09 13:12:59.003   Application   Loading plugin "Action Collection 1.4.15"
2016-09-09 13:12:59.007   Application   Starting plugin "Action Collection 1.4.15" (pid 408)
2016-09-09 13:12:59.009   Application   Loading interface "Z-Wave 1.0.368"
2016-09-09 13:12:59.011   Application   Starting interface "Z-Wave 1.0.368" (pid 409)
2016-09-09 13:12:59.013   Application   Loading plugin "Airfoil 1.1.14"
2016-09-09 13:12:59.015   Application   Starting plugin "Airfoil 1.1.14" (pid 410)
2016-09-09 13:12:59.017   Application   Loading plugin "Cynical Caché 1.6.7"
2016-09-09 13:12:59.020   Application   Starting plugin "Cynical Caché 1.6.7" (pid 411)
2016-09-09 13:12:59.023   Application   Loading plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 13:12:59.033   Application   Starting plugin "Cynical SecuritySpy 1.6.3" (pid 412)
2016-09-09 13:12:59.036   Application   Loading plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 13:12:59.045   Application   Starting plugin "Enigma2 HTTP-Control 0.1" (pid 413)
2016-09-09 13:12:59.047   Application   Loading plugin "Hue Lights 1.3.27"
2016-09-09 13:12:59.097   Application   Starting plugin "Hue Lights 1.3.27" (pid 414)
2016-09-09 13:12:59.103   Application   Loading plugin "iTunes 1.1.7"
2016-09-09 13:12:59.137   Application   Starting plugin "iTunes 1.1.7" (pid 416)
2016-09-09 13:12:59.139   Application   Loading plugin "Timers and Pesters 1.2.2"
2016-09-09 13:12:59.145   Application   Starting plugin "Timers and Pesters 1.2.2" (pid 417)
2016-09-09 13:12:59.147   Application   Loading interface "Virtual Devices 1.0.14"
2016-09-09 13:12:59.152   Application   Starting interface "Virtual Devices 1.0.14" (pid 418)
2016-09-09 13:12:59.157   Application   Loading plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 13:12:59.160   Application   Starting plugin "Yamaha RX-Vx75 Receiver 0.1.2" (pid 419)
2016-09-09 13:12:59.162   Application   Found disabled interface "INSTEON Commands 2.0.6"
2016-09-09 13:12:59.163   Application   Found disabled plugin "DIRECTV DVR Control 1.1.1"
2016-09-09 13:12:59.164   Application   Found disabled plugin "EasyDAQ Relay Card 1.1.8"
2016-09-09 13:12:59.165   Application   Found disabled plugin "Global Property Manager 1.0.1"
2016-09-09 13:12:59.165   Application   Found disabled plugin "Growl 1.1.3"
2016-09-09 13:12:59.166   Application   Found disabled plugin "iCal Alarm Processor 1.1.1"
2016-09-09 13:12:59.166   Application   Found disabled plugin "NOAA Weather 1.1.2"
2016-09-09 13:12:59.167   Application   Found disabled plugin "SQL Logger 1.1.11"
2016-09-09 13:12:59.167   Application   Found disabled plugin "Vera Bridge 1.0.10"
2016-09-09 13:12:59.168   Application   Found disabled plugin "WeatherSnoop 2.0.10"
2016-09-09 13:12:59.168   Application   Found disabled plugin "WUnderground 0.9.39"
2016-09-09 13:12:59.261   Application   Bonjour registered "Indigo - Hohes Ufer 15"
2016-09-09 13:13:00.620   Application   WebServer client connected
2016-09-09 13:13:00.633   WebServer   started on port 8176 -- authentication disabled
2016-09-09 13:13:00.634   WebServer   loaded plugin "Weather Conditions"
2016-09-09 13:13:00.634   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/css"
2016-09-09 13:13:00.635   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/images"
2016-09-09 13:13:00.635   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/js"
2016-09-09 13:13:00.644   WebServer   enabled browser access to plugin path "plugins/Weather-Conditions/static"
2016-09-09 13:13:00.853   Application   Started interface "Virtual Devices 1.0.14"
2016-09-09 13:13:00.858   Application   Started plugin "Airfoil 1.1.14"
2016-09-09 13:13:00.878   Application   Started plugin "Timers and Pesters 1.2.2"
2016-09-09 13:13:00.885   Application   Started plugin "Action Collection 1.4.15"
2016-09-09 13:13:00.886   Cynical Caché   API version 1.20
2016-09-09 13:13:00.913   Application   Started plugin "Enigma2 HTTP-Control 0.1"
2016-09-09 13:13:00.914   Enigma2 HTTP-Control Debug   startup called
2016-09-09 13:13:00.916   Cynical SecuritySpy   API version 1.20
2016-09-09 13:13:00.922   Application   Started plugin "Cynical Caché 1.6.7"
2016-09-09 13:13:00.926   Application   Started plugin "iTunes 1.1.7"
2016-09-09 13:13:00.985   Application   Started plugin "Cynical SecuritySpy 1.6.3"
2016-09-09 13:13:01.074   Application   Started plugin "Yamaha RX-Vx75 Receiver 0.1.2"
2016-09-09 13:13:01.076   Yamaha RX-Vx75 Receiver Debug   startup called
2016-09-09 13:13:01.164   Cynical SecuritySpy Error   SecuritySpy unavailable: [Errno 61] Connection refused
2016-09-09 13:13:01.165   Cynical SecuritySpy Error   CamGaragenplatz unavailable: host device SecuritySpy is unavailable
2016-09-09 13:13:01.166   Cynical SecuritySpy Error   CamGarten links unavailable: host device SecuritySpy is unavailable
2016-09-09 13:13:01.167   Cynical SecuritySpy Error   CamGarten rechts unavailable: host device SecuritySpy is unavailable
2016-09-09 13:13:01.168   Cynical SecuritySpy Error   CamHaustür unavailable: host device SecuritySpy is unavailable
2016-09-09 13:13:01.169   Cynical SecuritySpy Error   CamTreppe unavailable: host device SecuritySpy is unavailable
2016-09-09 13:13:01.170   Cynical SecuritySpy Error   CamWintergarten unavailable: host device SecuritySpy is unavailable
2016-09-09 13:13:01.299   Application   Started plugin "Hue Lights 1.3.27"
2016-09-09 13:13:01.325   Application   Started interface "Z-Wave 1.0.368"
2016-09-09 13:13:01.363   Hue Lights   Loaded 6 lights.
2016-09-09 13:13:01.564   Hue Lights   Loaded 1 group.
2016-09-09 13:13:01.855   Z-Wave   connected to Z-Wave 3.95 static controller interface on /dev/cu.usbmodem1D1311 (firmware 1.00)
2016-09-09 13:13:01.994   Z-Wave   found module included in controller with no matching device (missing or disabled): 005 - Relay Power Switch
2016-09-09 13:13:02.170   Cynical SecuritySpy Error   CamGarten links 8440,8800 Error communicating with the network device "4 Garten links"
2016-09-09 13:13:02.445   Z-Wave   found module included in controller with no matching device (missing or disabled): 168 - Basic Repeater Slave
2016-09-09 13:13:11.395   Application   Indigo Cocoa client authenticated (192.168.0.115)
2016-09-09 13:13:14.217   Application   Embedded script executor host started
2016-09-09 13:13:42.852   Z-Wave   received "Durchgang Lux" sensor update to 0 lux
2016-09-09 13:13:42.855   Z-Wave   received "Durchgang Luftfeuchte" sensor update to 75%
2016-09-09 13:13:42.892   Z-Wave   received "Durchgang Temperatur" sensor update to 17.9 °C
2016-09-09 13:13:45.570   Z-Wave   received "086 - Durchgang Bewegung" status update battery level 57%
2016-09-09 13:13:45.571   Trigger   Durchgang BW
2016-09-09 13:14:16.587   Application   Enabling plugin "WUnderground 0.9.39"
2016-09-09 13:14:16.590   Application   Starting plugin "WUnderground 0.9.39" (pid 593)
2016-09-09 13:14:18.201   Z-Wave   received "Thermostat Kueche" mode is off
2016-09-09 13:14:18.203   Z-Wave   received "Thermostat Kueche" temperature update to 24.5 °C
2016-09-09 13:14:18.204   Z-Wave   received "Thermostat Kueche" heat setpoint is 16.0 °C
2016-09-09 13:14:18.205   Z-Wave   received "141 - Thermostat Kueche" status update battery level 0%
2016-09-09 13:14:18.205   Trigger   Thermostat Kueche
2016-09-09 13:14:19.961   Application   Started plugin "WUnderground 0.9.39"
2016-09-09 13:14:23.570   Trigger   Global Cache Restart
2016-09-09 13:14:23.570   Cynical Caché Error   iTach unavailable: [Errno 60] Operation timed out
2016-09-09 13:14:23.570   Cynical Caché Error   iTach Port 1 unavailable: host device iTach is unavailable
2016-09-09 13:14:23.571   Cynical Caché Error   iTach Port 2 unavailable: host device iTach is unavailable
2016-09-09 13:14:23.572   Cynical Caché Error   iTach Port 3 Blaster unavailable: host device iTach is unavailable
2016-09-09 13:14:23.577   Application   Reloading plugin "Cynical Caché 1.6.7"
2016-09-09 13:14:23.577   Application   Stopping plugin "Cynical Caché 1.6.7" (pid 411)
2016-09-09 13:14:24.679   Application   Stopped plugin "Cynical Caché 1.6.7"
2016-09-09 13:14:26.181   Application   Starting plugin "Cynical Caché 1.6.7" (pid 611)
2016-09-09 13:14:26.401   Cynical Caché   API version 1.20
2016-09-09 13:14:26.413   Application   Started plugin "Cynical Caché 1.6.7"

matt (support) wrote:
Regarding:

"This error occurs e.g. in case a battery powered Z-Wave device reports its battery state and that triggers an event"

What event (action) specifically does it trigger?
Code: Select all
insert state (batterylevel.ui) for device '156 - remote switch (zme-6443)' into variable: battery_dg_ft_fenster

Thanks for your help!

Cheers,
Ben

Posted on
Sat Sep 10, 2016 10:39 am
matt (support) offline
Site Admin
User avatar
Posts: 21421
Joined: Jan 27, 2003
Location: Texas

Re: indigo server without internet connection?

Hi Ben,

Okay, I think I know what occurred. The problem is your embedded AppleScript hung up because the network was down. Embedded AppleScripts have to run in the main Indigo Server thread, so if they hang up for any reason the entire Indigo Server becomes unresponsive. This then caused a bunch of your plugins to start to fail because they weren't getting any responses from the Indigo Server.

You shouldn't use embedded AppleScripts for anything that makes networking calls (or anything else that won't complete within a second or so). If you pull your script out and save it into a file (via the Script Editor application), then you can have Indigo execute the external file. Indigo will start a new process to do that, so if it hangs for any reason it won't impact the Indigo Server.

I'm not sure if your script hung because the "with timeout" clauses weren't working correctly in this case (wouldn't surprise me at all if the timeout doesn't work great in that case), or if it was because the cumulative time – even if the timeouts work correctly – is still 14 seconds (2 seconds * 7 requests). That is a really long time to have the Indigo Server stall (and not be able to answer incoming plugin requests). Either way the solution is to pull your script out and not executed it from Indigo Server (so not embedded).

Image

Posted on
Sat Sep 10, 2016 11:09 am
BenX10 offline
Posts: 52
Joined: Mar 10, 2012
Location: Haltern am See, Germany

Re: indigo server without internet connection?

Hi Matt,

Thanks for your fast reply and help. Years ago I've used external script files instead of embedding the scripts. But as the Mac running indigo server is "without head" found it easier to work with embedded scripting and thus changed it - and I wasn't aware that embedded AppleScript is that time critical. Is this the same for embedded Python?

Cheers,
Ben

Posted on
Sat Sep 10, 2016 11:58 am
matt (support) offline
Site Admin
User avatar
Posts: 21421
Joined: Jan 27, 2003
Location: Texas

Re: indigo server without internet connection?

Embedded python is better than embedded AppleScript. For python all the embedded scripts run inside a shared process external to Indigo Server. So a blocked/hung embedded python script will only block other embedded python scripts, and not the Indigo Server. Additionally, Indigo monitors the embedded python process and if it takes longer than 10 seconds for script to complete then it kills the process (and restarts it) to allow other embedded scripts to run.

Image

Posted on
Sun Sep 11, 2016 7:26 am
kw123 offline
User avatar
Posts: 8374
Joined: May 12, 2013
Location: Dallas, TX

Re: indigo server without internet connection?

This kind of situation can create real problems in plugins. They error in things like updating devices states. Covering all kinds of possibilities is very difficult. In one of my large plugins I have several hundred indigo server calls. If there is an error I assume in many cases that the device does not exist. Then the logic is bad as it might try to create that device... And then things go down hill, data sets get out of sync .... So please do not use any AppleScript if possible.


Sent from my iPhone using Tapatalk

Posted on
Sat Sep 24, 2016 11:50 am
mat offline
Posts: 769
Joined: Nov 25, 2010
Location: Cambridgeshire - UK

Re: indigo server without internet connection?

FWIW Matt I just had the same with a network outage.

I too have internal applescripts running and it took out all of the plugins. Restarted the server and all seems back to normal. Guess its just time for me to move the scripts external.

Cheers

Mat

Late 2018 mini 10.14

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 2 guests