I've been very interested to your scriptedlogon in particular to the WOL functionalities which I desperately need.
I'm still investigating that but it looks like that the START_LISTENING_WOL cause scripteditlogon to crash mysteriously without telling me why. It looks like there is a clash with the TCP/IP stack somehow.
As follow the copy of the script which fails to run correctly. Basically I have a system which is constantly on during the day which runs my website and I thought to use your script as a gateway to wake up my server when I need from the office for instance without exposing the server to the internet directly. The script is very simple it polls the MAC address of the system running the website every second and in case of incoming request sends a WOL packet to the server:
//
// This script will listen to the magic packet
// in order to wake up the server from internet
//
//
// Reset the log
//
log_reset
log_level error
//
// Main Loop
//
: WAIT_FOR_WOL
start_listening_wol <this PC MAC>
if not last_command_succeeded
goto STOP_SNIFFING
// Received a wake up request in the last second ?
if last_received_wol 1
// Received the Magic Packet so Wake up the server
send_wol <server MAC>
//
// Stop Sniffing
//
: STOP_SNIFFING
// give some time to the CPU
wait 1000
// stop sniffing at the interface
stop_listening_wol
// do it forever
goto WAIT_FOR_WOL
I must admit I don't remember at all how it works. It's been a very long time and I don't even know how to operate it again . If you're fluent in coding I think the source code must have been included, otherwise tell me and I will try to look for it.
Have you tried shifting the log_level from error to debug (or something like that) and see if it was more verbose?
The 1 second delay seems to be a bit short, maybe it would be wise to set a longer one at first.
Regarding the script, if I remember correctly you don't have to reset the UDP interface layer each time you wish to send a packet, just put the corresponding commands (satrt and stop) on each end of the script.
In any case, packet sniffers like tcpdump can be used to help debugging what is actually happening.
after I posted the code I realized what you said about not need to START and STOP the sniffer every time, so I changed the script and increased the timeout you suggested as follow, lets see what happens.
regards
routerunner
//////////////////////////////////////////////////
// This script will listen to the magic packet //
// in order to wake up the server from internet //
//////////////////////////////////////////////////
//
// Reset the log
//
log_reset
log_level debug
//
// Activate the WOL packet sniffer
//
: START_SNIFFING
start_listening_wol 00:00:18:B0:C3:F3
if last_command_succeeded
// sniffer up and running go wait for WOL
goto WAIT_FOR_WOL
// yield some some time to the CPU
wait 1000
// try again to star the sniffer
goto START_SNIFFING
//
// Main Loop
//
: WAIT_FOR_WOL
// Received a Wake Up request ?
if last_received_wol 5
// Received the Magic Packet so Wake up the server
send_wol 00:03:1d:04:4f:4d
// yield some some time to the CPU
wait 10000
// do it forever
goto WAIT_FOR_WOL
///////////////////
// End of script //
///////////////////
OK, just after 10 minutes scriptedlogon died without apparent explanation and this is the log file, as you can see it died just while was writing the message about the 10 second delay. No message from windows so no exception I guess, so it looks like the software just decided to exit after 10 minutes flat.
09/02/2008 20:32:30 - NOTICE : Log file swept up
09/02/2008 20:32:30 - NOTICE : LOG_LEVEL triggered
09/02/2008 20:32:30 - NOTICE : Log level reset to DEBUG
09/02/2008 20:32:30 - DEBUG : Command #3 [8] triggered
09/02/2008 20:32:30 - DEBUG : : skipped
09/02/2008 20:32:30 - DEBUG : Command #4 [11] triggered
09/02/2008 20:32:30 - NOTICE : START_LISTENING_WOL triggered
09/02/2008 20:32:30 - NOTICE : Wake On Lan sniffer successfully initialized
09/02/2008 20:32:30 - DEBUG : Command #5 [1] triggered
09/02/2008 20:32:30 - NOTICE : IF triggered
09/02/2008 20:32:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:32:30 - DEBUG : 0 options bound
09/02/2008 20:32:30 - DEBUG : Analyzing condition...
09/02/2008 20:32:30 - DEBUG : First token is last_command_succeeded
09/02/2008 20:32:30 - DEBUG : First token is last_command_succeeded
09/02/2008 20:32:30 - DEBUG : First token is last_command_succeeded
09/02/2008 20:32:30 - DEBUG : First token is last_command_succeeded
09/02/2008 20:32:30 - DEBUG : Parsed as 3
09/02/2008 20:32:30 - NOTICE : LAST_COMMAND_SUCCEEDED triggered
09/02/2008 20:32:30 - NOTICE : Previous command returned "True"
09/02/2008 20:32:30 - NOTICE : Sub command returned True
09/02/2008 20:32:30 - DEBUG : Condition analyzed
09/02/2008 20:32:30 - DEBUG : Test returned True with errorCode = 0
09/02/2008 20:32:30 - NOTICE : Will process next command
09/02/2008 20:32:30 - DEBUG : Command #6 [3] triggered
09/02/2008 20:32:30 - NOTICE : GOTO triggered
09/02/2008 20:32:30 - NOTICE : Will skip script until line #9
09/02/2008 20:32:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:32:30 - NOTICE : IF triggered
09/02/2008 20:32:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:32:30 - DEBUG : 0 options bound
09/02/2008 20:32:30 - DEBUG : Analyzing condition...
09/02/2008 20:32:30 - DEBUG : First token is last_received_wol
09/02/2008 20:32:30 - DEBUG : First token is last_received_wol
09/02/2008 20:32:30 - DEBUG : First token is last_received_wol
09/02/2008 20:32:30 - DEBUG : First token is last_received_wol
09/02/2008 20:32:30 - DEBUG : First token is last_received_wol
09/02/2008 20:32:30 - DEBUG : Parsed as 4
09/02/2008 20:32:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:32:30 - DEBUG : Value 5 found
09/02/2008 20:32:30 - NOTICE : Latest WOL packet captured 31 seconds ago
09/02/2008 20:32:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:32:30 - NOTICE : Sub command returned False
09/02/2008 20:32:30 - DEBUG : Condition analyzed
09/02/2008 20:32:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:32:30 - NOTICE : Will skip next command
09/02/2008 20:32:30 - NOTICE : Next command is 10
09/02/2008 20:32:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:32:30 - NOTICE : WAIT triggered
09/02/2008 20:32:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:32:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:32:40 - NOTICE : GOTO triggered
09/02/2008 20:32:40 - NOTICE : Will skip script until line #9
09/02/2008 20:32:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:32:40 - NOTICE : IF triggered
09/02/2008 20:32:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:32:40 - DEBUG : 0 options bound
09/02/2008 20:32:40 - DEBUG : Analyzing condition...
09/02/2008 20:32:40 - DEBUG : First token is last_received_wol
09/02/2008 20:32:40 - DEBUG : First token is last_received_wol
09/02/2008 20:32:40 - DEBUG : First token is last_received_wol
09/02/2008 20:32:40 - DEBUG : First token is last_received_wol
09/02/2008 20:32:40 - DEBUG : First token is last_received_wol
09/02/2008 20:32:40 - DEBUG : Parsed as 4
09/02/2008 20:32:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:32:40 - DEBUG : Value 5 found
09/02/2008 20:32:40 - NOTICE : Latest WOL packet captured 41 seconds ago
09/02/2008 20:32:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:32:40 - NOTICE : Sub command returned False
09/02/2008 20:32:40 - DEBUG : Condition analyzed
09/02/2008 20:32:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:32:40 - NOTICE : Will skip next command
09/02/2008 20:32:40 - NOTICE : Next command is 10
09/02/2008 20:32:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:32:40 - NOTICE : WAIT triggered
09/02/2008 20:32:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:32:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:32:50 - NOTICE : GOTO triggered
09/02/2008 20:32:50 - NOTICE : Will skip script until line #9
09/02/2008 20:32:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:32:50 - NOTICE : IF triggered
09/02/2008 20:32:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:32:50 - DEBUG : 0 options bound
09/02/2008 20:32:50 - DEBUG : Analyzing condition...
09/02/2008 20:32:50 - DEBUG : First token is last_received_wol
09/02/2008 20:32:50 - DEBUG : First token is last_received_wol
09/02/2008 20:32:50 - DEBUG : First token is last_received_wol
09/02/2008 20:32:50 - DEBUG : First token is last_received_wol
09/02/2008 20:32:50 - DEBUG : First token is last_received_wol
09/02/2008 20:32:50 - DEBUG : Parsed as 4
09/02/2008 20:32:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:32:50 - DEBUG : Value 5 found
09/02/2008 20:32:50 - NOTICE : Latest WOL packet captured 51 seconds ago
09/02/2008 20:32:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:32:50 - NOTICE : Sub command returned False
09/02/2008 20:32:50 - DEBUG : Condition analyzed
09/02/2008 20:32:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:32:50 - NOTICE : Will skip next command
09/02/2008 20:32:50 - NOTICE : Next command is 10
09/02/2008 20:32:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:32:50 - NOTICE : WAIT triggered
09/02/2008 20:32:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:33:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:33:00 - NOTICE : GOTO triggered
09/02/2008 20:33:00 - NOTICE : Will skip script until line #9
09/02/2008 20:33:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:33:00 - NOTICE : IF triggered
09/02/2008 20:33:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:33:00 - DEBUG : 0 options bound
09/02/2008 20:33:00 - DEBUG : Analyzing condition...
09/02/2008 20:33:00 - DEBUG : First token is last_received_wol
09/02/2008 20:33:00 - DEBUG : First token is last_received_wol
09/02/2008 20:33:00 - DEBUG : First token is last_received_wol
09/02/2008 20:33:00 - DEBUG : First token is last_received_wol
09/02/2008 20:33:00 - DEBUG : First token is last_received_wol
09/02/2008 20:33:00 - DEBUG : Parsed as 4
09/02/2008 20:33:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:33:00 - DEBUG : Value 5 found
09/02/2008 20:33:00 - NOTICE : Latest WOL packet captured 61 seconds ago
09/02/2008 20:33:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:33:00 - NOTICE : Sub command returned False
09/02/2008 20:33:00 - DEBUG : Condition analyzed
09/02/2008 20:33:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:33:00 - NOTICE : Will skip next command
09/02/2008 20:33:00 - NOTICE : Next command is 10
09/02/2008 20:33:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:33:00 - NOTICE : WAIT triggered
09/02/2008 20:33:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:33:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:33:10 - NOTICE : GOTO triggered
09/02/2008 20:33:10 - NOTICE : Will skip script until line #9
09/02/2008 20:33:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:33:10 - NOTICE : IF triggered
09/02/2008 20:33:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:33:10 - DEBUG : 0 options bound
09/02/2008 20:33:10 - DEBUG : Analyzing condition...
09/02/2008 20:33:10 - DEBUG : First token is last_received_wol
09/02/2008 20:33:10 - DEBUG : First token is last_received_wol
09/02/2008 20:33:10 - DEBUG : First token is last_received_wol
09/02/2008 20:33:10 - DEBUG : First token is last_received_wol
09/02/2008 20:33:10 - DEBUG : First token is last_received_wol
09/02/2008 20:33:10 - DEBUG : Parsed as 4
09/02/2008 20:33:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:33:10 - DEBUG : Value 5 found
09/02/2008 20:33:10 - NOTICE : Latest WOL packet captured 71 seconds ago
09/02/2008 20:33:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:33:10 - NOTICE : Sub command returned False
09/02/2008 20:33:10 - DEBUG : Condition analyzed
09/02/2008 20:33:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:33:10 - NOTICE : Will skip next command
09/02/2008 20:33:10 - NOTICE : Next command is 10
09/02/2008 20:33:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:33:10 - NOTICE : WAIT triggered
09/02/2008 20:33:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:33:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:33:20 - NOTICE : GOTO triggered
09/02/2008 20:33:20 - NOTICE : Will skip script until line #9
09/02/2008 20:33:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:33:20 - NOTICE : IF triggered
09/02/2008 20:33:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:33:20 - DEBUG : 0 options bound
09/02/2008 20:33:20 - DEBUG : Analyzing condition...
09/02/2008 20:33:20 - DEBUG : First token is last_received_wol
09/02/2008 20:33:20 - DEBUG : First token is last_received_wol
09/02/2008 20:33:20 - DEBUG : First token is last_received_wol
09/02/2008 20:33:20 - DEBUG : First token is last_received_wol
09/02/2008 20:33:20 - DEBUG : First token is last_received_wol
09/02/2008 20:33:20 - DEBUG : Parsed as 4
09/02/2008 20:33:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:33:20 - DEBUG : Value 5 found
09/02/2008 20:33:20 - NOTICE : Latest WOL packet captured 81 seconds ago
09/02/2008 20:33:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:33:20 - NOTICE : Sub command returned False
09/02/2008 20:33:20 - DEBUG : Condition analyzed
09/02/2008 20:33:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:33:20 - NOTICE : Will skip next command
09/02/2008 20:33:20 - NOTICE : Next command is 10
09/02/2008 20:33:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:33:20 - NOTICE : WAIT triggered
09/02/2008 20:33:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:33:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:33:30 - NOTICE : GOTO triggered
09/02/2008 20:33:30 - NOTICE : Will skip script until line #9
09/02/2008 20:33:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:33:30 - NOTICE : IF triggered
09/02/2008 20:33:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:33:30 - DEBUG : 0 options bound
09/02/2008 20:33:30 - DEBUG : Analyzing condition...
09/02/2008 20:33:30 - DEBUG : First token is last_received_wol
09/02/2008 20:33:30 - DEBUG : First token is last_received_wol
09/02/2008 20:33:30 - DEBUG : First token is last_received_wol
09/02/2008 20:33:30 - DEBUG : First token is last_received_wol
09/02/2008 20:33:30 - DEBUG : First token is last_received_wol
09/02/2008 20:33:30 - DEBUG : Parsed as 4
09/02/2008 20:33:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:33:30 - DEBUG : Value 5 found
09/02/2008 20:33:30 - NOTICE : Latest WOL packet captured 91 seconds ago
09/02/2008 20:33:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:33:30 - NOTICE : Sub command returned False
09/02/2008 20:33:30 - DEBUG : Condition analyzed
09/02/2008 20:33:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:33:30 - NOTICE : Will skip next command
09/02/2008 20:33:30 - NOTICE : Next command is 10
09/02/2008 20:33:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:33:30 - NOTICE : WAIT triggered
09/02/2008 20:33:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:33:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:33:40 - NOTICE : GOTO triggered
09/02/2008 20:33:40 - NOTICE : Will skip script until line #9
09/02/2008 20:33:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:33:40 - NOTICE : IF triggered
09/02/2008 20:33:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:33:40 - DEBUG : 0 options bound
09/02/2008 20:33:40 - DEBUG : Analyzing condition...
09/02/2008 20:33:40 - DEBUG : First token is last_received_wol
09/02/2008 20:33:40 - DEBUG : First token is last_received_wol
09/02/2008 20:33:40 - DEBUG : First token is last_received_wol
09/02/2008 20:33:40 - DEBUG : First token is last_received_wol
09/02/2008 20:33:40 - DEBUG : First token is last_received_wol
09/02/2008 20:33:40 - DEBUG : Parsed as 4
09/02/2008 20:33:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:33:40 - DEBUG : Value 5 found
09/02/2008 20:33:40 - NOTICE : Latest WOL packet captured 101 seconds ago
09/02/2008 20:33:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:33:40 - NOTICE : Sub command returned False
09/02/2008 20:33:40 - DEBUG : Condition analyzed
09/02/2008 20:33:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:33:40 - NOTICE : Will skip next command
09/02/2008 20:33:40 - NOTICE : Next command is 10
09/02/2008 20:33:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:33:40 - NOTICE : WAIT triggered
09/02/2008 20:33:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:33:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:33:50 - NOTICE : GOTO triggered
09/02/2008 20:33:50 - NOTICE : Will skip script until line #9
09/02/2008 20:33:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:33:50 - NOTICE : IF triggered
09/02/2008 20:33:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:33:50 - DEBUG : 0 options bound
09/02/2008 20:33:50 - DEBUG : Analyzing condition...
09/02/2008 20:33:50 - DEBUG : First token is last_received_wol
09/02/2008 20:33:50 - DEBUG : First token is last_received_wol
09/02/2008 20:33:50 - DEBUG : First token is last_received_wol
09/02/2008 20:33:50 - DEBUG : First token is last_received_wol
09/02/2008 20:33:50 - DEBUG : First token is last_received_wol
09/02/2008 20:33:50 - DEBUG : Parsed as 4
09/02/2008 20:33:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:33:50 - DEBUG : Value 5 found
09/02/2008 20:33:50 - NOTICE : Latest WOL packet captured 111 seconds ago
09/02/2008 20:33:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:33:50 - NOTICE : Sub command returned False
09/02/2008 20:33:50 - DEBUG : Condition analyzed
09/02/2008 20:33:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:33:50 - NOTICE : Will skip next command
09/02/2008 20:33:50 - NOTICE : Next command is 10
09/02/2008 20:33:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:33:50 - NOTICE : WAIT triggered
09/02/2008 20:33:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:34:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:34:00 - NOTICE : GOTO triggered
09/02/2008 20:34:00 - NOTICE : Will skip script until line #9
09/02/2008 20:34:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:34:00 - NOTICE : IF triggered
09/02/2008 20:34:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:34:00 - DEBUG : 0 options bound
09/02/2008 20:34:00 - DEBUG : Analyzing condition...
09/02/2008 20:34:00 - DEBUG : First token is last_received_wol
09/02/2008 20:34:00 - DEBUG : First token is last_received_wol
09/02/2008 20:34:00 - DEBUG : First token is last_received_wol
09/02/2008 20:34:00 - DEBUG : First token is last_received_wol
09/02/2008 20:34:00 - DEBUG : First token is last_received_wol
09/02/2008 20:34:00 - DEBUG : Parsed as 4
09/02/2008 20:34:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:34:00 - DEBUG : Value 5 found
09/02/2008 20:34:00 - NOTICE : Latest WOL packet captured 121 seconds ago
09/02/2008 20:34:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:34:00 - NOTICE : Sub command returned False
09/02/2008 20:34:00 - DEBUG : Condition analyzed
09/02/2008 20:34:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:34:00 - NOTICE : Will skip next command
09/02/2008 20:34:00 - NOTICE : Next command is 10
09/02/2008 20:34:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:34:00 - NOTICE : WAIT triggered
09/02/2008 20:34:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:34:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:34:10 - NOTICE : GOTO triggered
09/02/2008 20:34:10 - NOTICE : Will skip script until line #9
09/02/2008 20:34:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:34:10 - NOTICE : IF triggered
09/02/2008 20:34:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:34:10 - DEBUG : 0 options bound
09/02/2008 20:34:10 - DEBUG : Analyzing condition...
09/02/2008 20:34:10 - DEBUG : First token is last_received_wol
09/02/2008 20:34:10 - DEBUG : First token is last_received_wol
09/02/2008 20:34:10 - DEBUG : First token is last_received_wol
09/02/2008 20:34:10 - DEBUG : First token is last_received_wol
09/02/2008 20:34:10 - DEBUG : First token is last_received_wol
09/02/2008 20:34:10 - DEBUG : Parsed as 4
09/02/2008 20:34:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:34:10 - DEBUG : Value 5 found
09/02/2008 20:34:10 - NOTICE : Latest WOL packet captured 131 seconds ago
09/02/2008 20:34:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:34:10 - NOTICE : Sub command returned False
09/02/2008 20:34:10 - DEBUG : Condition analyzed
09/02/2008 20:34:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:34:10 - NOTICE : Will skip next command
09/02/2008 20:34:10 - NOTICE : Next command is 10
09/02/2008 20:34:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:34:10 - NOTICE : WAIT triggered
09/02/2008 20:34:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:34:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:34:20 - NOTICE : GOTO triggered
09/02/2008 20:34:20 - NOTICE : Will skip script until line #9
09/02/2008 20:34:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:34:20 - NOTICE : IF triggered
09/02/2008 20:34:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:34:20 - DEBUG : 0 options bound
09/02/2008 20:34:20 - DEBUG : Analyzing condition...
09/02/2008 20:34:20 - DEBUG : First token is last_received_wol
09/02/2008 20:34:20 - DEBUG : First token is last_received_wol
09/02/2008 20:34:20 - DEBUG : First token is last_received_wol
09/02/2008 20:34:20 - DEBUG : First token is last_received_wol
09/02/2008 20:34:20 - DEBUG : First token is last_received_wol
09/02/2008 20:34:20 - DEBUG : Parsed as 4
09/02/2008 20:34:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:34:20 - DEBUG : Value 5 found
09/02/2008 20:34:20 - NOTICE : Latest WOL packet captured 141 seconds ago
09/02/2008 20:34:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:34:20 - NOTICE : Sub command returned False
09/02/2008 20:34:20 - DEBUG : Condition analyzed
09/02/2008 20:34:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:34:20 - NOTICE : Will skip next command
09/02/2008 20:34:20 - NOTICE : Next command is 10
09/02/2008 20:34:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:34:20 - NOTICE : WAIT triggered
09/02/2008 20:34:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:34:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:34:30 - NOTICE : GOTO triggered
09/02/2008 20:34:30 - NOTICE : Will skip script until line #9
09/02/2008 20:34:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:34:30 - NOTICE : IF triggered
09/02/2008 20:34:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:34:30 - DEBUG : 0 options bound
09/02/2008 20:34:30 - DEBUG : Analyzing condition...
09/02/2008 20:34:30 - DEBUG : First token is last_received_wol
09/02/2008 20:34:30 - DEBUG : First token is last_received_wol
09/02/2008 20:34:30 - DEBUG : First token is last_received_wol
09/02/2008 20:34:30 - DEBUG : First token is last_received_wol
09/02/2008 20:34:30 - DEBUG : First token is last_received_wol
09/02/2008 20:34:30 - DEBUG : Parsed as 4
09/02/2008 20:34:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:34:30 - DEBUG : Value 5 found
09/02/2008 20:34:30 - NOTICE : Latest WOL packet captured 151 seconds ago
09/02/2008 20:34:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:34:30 - NOTICE : Sub command returned False
09/02/2008 20:34:30 - DEBUG : Condition analyzed
09/02/2008 20:34:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:34:30 - NOTICE : Will skip next command
09/02/2008 20:34:30 - NOTICE : Next command is 10
09/02/2008 20:34:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:34:30 - NOTICE : WAIT triggered
09/02/2008 20:34:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:34:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:34:40 - NOTICE : GOTO triggered
09/02/2008 20:34:40 - NOTICE : Will skip script until line #9
09/02/2008 20:34:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:34:40 - NOTICE : IF triggered
09/02/2008 20:34:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:34:40 - DEBUG : 0 options bound
09/02/2008 20:34:40 - DEBUG : Analyzing condition...
09/02/2008 20:34:40 - DEBUG : First token is last_received_wol
09/02/2008 20:34:40 - DEBUG : First token is last_received_wol
09/02/2008 20:34:40 - DEBUG : First token is last_received_wol
09/02/2008 20:34:40 - DEBUG : First token is last_received_wol
09/02/2008 20:34:40 - DEBUG : First token is last_received_wol
09/02/2008 20:34:40 - DEBUG : Parsed as 4
09/02/2008 20:34:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:34:40 - DEBUG : Value 5 found
09/02/2008 20:34:40 - NOTICE : Latest WOL packet captured 161 seconds ago
09/02/2008 20:34:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:34:40 - NOTICE : Sub command returned False
09/02/2008 20:34:40 - DEBUG : Condition analyzed
09/02/2008 20:34:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:34:40 - NOTICE : Will skip next command
09/02/2008 20:34:40 - NOTICE : Next command is 10
09/02/2008 20:34:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:34:40 - NOTICE : WAIT triggered
09/02/2008 20:34:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:34:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:34:50 - NOTICE : GOTO triggered
09/02/2008 20:34:50 - NOTICE : Will skip script until line #9
09/02/2008 20:34:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:34:50 - NOTICE : IF triggered
09/02/2008 20:34:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:34:50 - DEBUG : 0 options bound
09/02/2008 20:34:50 - DEBUG : Analyzing condition...
09/02/2008 20:34:50 - DEBUG : First token is last_received_wol
09/02/2008 20:34:50 - DEBUG : First token is last_received_wol
09/02/2008 20:34:50 - DEBUG : First token is last_received_wol
09/02/2008 20:34:50 - DEBUG : First token is last_received_wol
09/02/2008 20:34:50 - DEBUG : First token is last_received_wol
09/02/2008 20:34:50 - DEBUG : Parsed as 4
09/02/2008 20:34:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:34:50 - DEBUG : Value 5 found
09/02/2008 20:34:50 - NOTICE : Latest WOL packet captured 171 seconds ago
09/02/2008 20:34:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:34:50 - NOTICE : Sub command returned False
09/02/2008 20:34:50 - DEBUG : Condition analyzed
09/02/2008 20:34:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:34:50 - NOTICE : Will skip next command
09/02/2008 20:34:50 - NOTICE : Next command is 10
09/02/2008 20:34:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:34:50 - NOTICE : WAIT triggered
09/02/2008 20:34:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:35:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:35:00 - NOTICE : GOTO triggered
09/02/2008 20:35:00 - NOTICE : Will skip script until line #9
09/02/2008 20:35:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:35:00 - NOTICE : IF triggered
09/02/2008 20:35:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:35:00 - DEBUG : 0 options bound
09/02/2008 20:35:00 - DEBUG : Analyzing condition...
09/02/2008 20:35:00 - DEBUG : First token is last_received_wol
09/02/2008 20:35:00 - DEBUG : First token is last_received_wol
09/02/2008 20:35:00 - DEBUG : First token is last_received_wol
09/02/2008 20:35:00 - DEBUG : First token is last_received_wol
09/02/2008 20:35:00 - DEBUG : First token is last_received_wol
09/02/2008 20:35:00 - DEBUG : Parsed as 4
09/02/2008 20:35:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:35:00 - DEBUG : Value 5 found
09/02/2008 20:35:00 - NOTICE : Latest WOL packet captured 181 seconds ago
09/02/2008 20:35:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:35:00 - NOTICE : Sub command returned False
09/02/2008 20:35:00 - DEBUG : Condition analyzed
09/02/2008 20:35:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:35:00 - NOTICE : Will skip next command
09/02/2008 20:35:00 - NOTICE : Next command is 10
09/02/2008 20:35:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:35:00 - NOTICE : WAIT triggered
09/02/2008 20:35:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:35:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:35:10 - NOTICE : GOTO triggered
09/02/2008 20:35:10 - NOTICE : Will skip script until line #9
09/02/2008 20:35:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:35:10 - NOTICE : IF triggered
09/02/2008 20:35:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:35:10 - DEBUG : 0 options bound
09/02/2008 20:35:10 - DEBUG : Analyzing condition...
09/02/2008 20:35:10 - DEBUG : First token is last_received_wol
09/02/2008 20:35:10 - DEBUG : First token is last_received_wol
09/02/2008 20:35:10 - DEBUG : First token is last_received_wol
09/02/2008 20:35:10 - DEBUG : First token is last_received_wol
09/02/2008 20:35:10 - DEBUG : First token is last_received_wol
09/02/2008 20:35:10 - DEBUG : Parsed as 4
09/02/2008 20:35:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:35:10 - DEBUG : Value 5 found
09/02/2008 20:35:10 - NOTICE : Latest WOL packet captured 191 seconds ago
09/02/2008 20:35:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:35:10 - NOTICE : Sub command returned False
09/02/2008 20:35:10 - DEBUG : Condition analyzed
09/02/2008 20:35:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:35:10 - NOTICE : Will skip next command
09/02/2008 20:35:10 - NOTICE : Next command is 10
09/02/2008 20:35:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:35:10 - NOTICE : WAIT triggered
09/02/2008 20:35:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:35:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:35:20 - NOTICE : GOTO triggered
09/02/2008 20:35:20 - NOTICE : Will skip script until line #9
09/02/2008 20:35:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:35:20 - NOTICE : IF triggered
09/02/2008 20:35:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:35:20 - DEBUG : 0 options bound
09/02/2008 20:35:20 - DEBUG : Analyzing condition...
09/02/2008 20:35:20 - DEBUG : First token is last_received_wol
09/02/2008 20:35:20 - DEBUG : First token is last_received_wol
09/02/2008 20:35:20 - DEBUG : First token is last_received_wol
09/02/2008 20:35:20 - DEBUG : First token is last_received_wol
09/02/2008 20:35:20 - DEBUG : First token is last_received_wol
09/02/2008 20:35:20 - DEBUG : Parsed as 4
09/02/2008 20:35:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:35:20 - DEBUG : Value 5 found
09/02/2008 20:35:20 - NOTICE : Latest WOL packet captured 201 seconds ago
09/02/2008 20:35:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:35:20 - NOTICE : Sub command returned False
09/02/2008 20:35:20 - DEBUG : Condition analyzed
09/02/2008 20:35:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:35:20 - NOTICE : Will skip next command
09/02/2008 20:35:20 - NOTICE : Next command is 10
09/02/2008 20:35:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:35:20 - NOTICE : WAIT triggered
09/02/2008 20:35:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:35:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:35:30 - NOTICE : GOTO triggered
09/02/2008 20:35:30 - NOTICE : Will skip script until line #9
09/02/2008 20:35:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:35:30 - NOTICE : IF triggered
09/02/2008 20:35:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:35:30 - DEBUG : 0 options bound
09/02/2008 20:35:30 - DEBUG : Analyzing condition...
09/02/2008 20:35:30 - DEBUG : First token is last_received_wol
09/02/2008 20:35:30 - DEBUG : First token is last_received_wol
09/02/2008 20:35:30 - DEBUG : First token is last_received_wol
09/02/2008 20:35:30 - DEBUG : First token is last_received_wol
09/02/2008 20:35:30 - DEBUG : First token is last_received_wol
09/02/2008 20:35:30 - DEBUG : Parsed as 4
09/02/2008 20:35:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:35:30 - DEBUG : Value 5 found
09/02/2008 20:35:30 - NOTICE : Latest WOL packet captured 211 seconds ago
09/02/2008 20:35:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:35:30 - NOTICE : Sub command returned False
09/02/2008 20:35:30 - DEBUG : Condition analyzed
09/02/2008 20:35:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:35:30 - NOTICE : Will skip next command
09/02/2008 20:35:30 - NOTICE : Next command is 10
09/02/2008 20:35:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:35:30 - NOTICE : WAIT triggered
09/02/2008 20:35:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:35:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:35:40 - NOTICE : GOTO triggered
09/02/2008 20:35:40 - NOTICE : Will skip script until line #9
09/02/2008 20:35:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:35:40 - NOTICE : IF triggered
09/02/2008 20:35:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:35:40 - DEBUG : 0 options bound
09/02/2008 20:35:40 - DEBUG : Analyzing condition...
09/02/2008 20:35:40 - DEBUG : First token is last_received_wol
09/02/2008 20:35:40 - DEBUG : First token is last_received_wol
09/02/2008 20:35:40 - DEBUG : First token is last_received_wol
09/02/2008 20:35:40 - DEBUG : First token is last_received_wol
09/02/2008 20:35:40 - DEBUG : First token is last_received_wol
09/02/2008 20:35:40 - DEBUG : Parsed as 4
09/02/2008 20:35:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:35:40 - DEBUG : Value 5 found
09/02/2008 20:35:40 - NOTICE : Latest WOL packet captured 221 seconds ago
09/02/2008 20:35:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:35:40 - NOTICE : Sub command returned False
09/02/2008 20:35:40 - DEBUG : Condition analyzed
09/02/2008 20:35:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:35:40 - NOTICE : Will skip next command
09/02/2008 20:35:40 - NOTICE : Next command is 10
09/02/2008 20:35:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:35:40 - NOTICE : WAIT triggered
09/02/2008 20:35:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:35:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:35:50 - NOTICE : GOTO triggered
09/02/2008 20:35:50 - NOTICE : Will skip script until line #9
09/02/2008 20:35:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:35:50 - NOTICE : IF triggered
09/02/2008 20:35:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:35:50 - DEBUG : 0 options bound
09/02/2008 20:35:50 - DEBUG : Analyzing condition...
09/02/2008 20:35:50 - DEBUG : First token is last_received_wol
09/02/2008 20:35:50 - DEBUG : First token is last_received_wol
09/02/2008 20:35:50 - DEBUG : First token is last_received_wol
09/02/2008 20:35:50 - DEBUG : First token is last_received_wol
09/02/2008 20:35:50 - DEBUG : First token is last_received_wol
09/02/2008 20:35:50 - DEBUG : Parsed as 4
09/02/2008 20:35:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:35:50 - DEBUG : Value 5 found
09/02/2008 20:35:50 - NOTICE : Latest WOL packet captured 231 seconds ago
09/02/2008 20:35:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:35:50 - NOTICE : Sub command returned False
09/02/2008 20:35:50 - DEBUG : Condition analyzed
09/02/2008 20:35:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:35:50 - NOTICE : Will skip next command
09/02/2008 20:35:50 - NOTICE : Next command is 10
09/02/2008 20:35:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:35:50 - NOTICE : WAIT triggered
09/02/2008 20:35:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:36:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:36:00 - NOTICE : GOTO triggered
09/02/2008 20:36:00 - NOTICE : Will skip script until line #9
09/02/2008 20:36:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:36:00 - NOTICE : IF triggered
09/02/2008 20:36:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:36:00 - DEBUG : 0 options bound
09/02/2008 20:36:00 - DEBUG : Analyzing condition...
09/02/2008 20:36:00 - DEBUG : First token is last_received_wol
09/02/2008 20:36:00 - DEBUG : First token is last_received_wol
09/02/2008 20:36:00 - DEBUG : First token is last_received_wol
09/02/2008 20:36:00 - DEBUG : First token is last_received_wol
09/02/2008 20:36:00 - DEBUG : First token is last_received_wol
09/02/2008 20:36:00 - DEBUG : Parsed as 4
09/02/2008 20:36:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:36:00 - DEBUG : Value 5 found
09/02/2008 20:36:00 - NOTICE : Latest WOL packet captured 241 seconds ago
09/02/2008 20:36:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:36:00 - NOTICE : Sub command returned False
09/02/2008 20:36:00 - DEBUG : Condition analyzed
09/02/2008 20:36:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:36:00 - NOTICE : Will skip next command
09/02/2008 20:36:00 - NOTICE : Next command is 10
09/02/2008 20:36:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:36:00 - NOTICE : WAIT triggered
09/02/2008 20:36:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:36:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:36:10 - NOTICE : GOTO triggered
09/02/2008 20:36:10 - NOTICE : Will skip script until line #9
09/02/2008 20:36:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:36:10 - NOTICE : IF triggered
09/02/2008 20:36:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:36:10 - DEBUG : 0 options bound
09/02/2008 20:36:10 - DEBUG : Analyzing condition...
09/02/2008 20:36:10 - DEBUG : First token is last_received_wol
09/02/2008 20:36:10 - DEBUG : First token is last_received_wol
09/02/2008 20:36:10 - DEBUG : First token is last_received_wol
09/02/2008 20:36:10 - DEBUG : First token is last_received_wol
09/02/2008 20:36:10 - DEBUG : First token is last_received_wol
09/02/2008 20:36:10 - DEBUG : Parsed as 4
09/02/2008 20:36:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:36:10 - DEBUG : Value 5 found
09/02/2008 20:36:10 - NOTICE : Latest WOL packet captured 251 seconds ago
09/02/2008 20:36:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:36:10 - NOTICE : Sub command returned False
09/02/2008 20:36:10 - DEBUG : Condition analyzed
09/02/2008 20:36:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:36:10 - NOTICE : Will skip next command
09/02/2008 20:36:10 - NOTICE : Next command is 10
09/02/2008 20:36:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:36:10 - NOTICE : WAIT triggered
09/02/2008 20:36:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:36:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:36:20 - NOTICE : GOTO triggered
09/02/2008 20:36:20 - NOTICE : Will skip script until line #9
09/02/2008 20:36:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:36:20 - NOTICE : IF triggered
09/02/2008 20:36:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:36:20 - DEBUG : 0 options bound
09/02/2008 20:36:20 - DEBUG : Analyzing condition...
09/02/2008 20:36:20 - DEBUG : First token is last_received_wol
09/02/2008 20:36:20 - DEBUG : First token is last_received_wol
09/02/2008 20:36:20 - DEBUG : First token is last_received_wol
09/02/2008 20:36:20 - DEBUG : First token is last_received_wol
09/02/2008 20:36:20 - DEBUG : First token is last_received_wol
09/02/2008 20:36:20 - DEBUG : Parsed as 4
09/02/2008 20:36:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:36:20 - DEBUG : Value 5 found
09/02/2008 20:36:20 - NOTICE : Latest WOL packet captured 261 seconds ago
09/02/2008 20:36:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:36:20 - NOTICE : Sub command returned False
09/02/2008 20:36:20 - DEBUG : Condition analyzed
09/02/2008 20:36:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:36:20 - NOTICE : Will skip next command
09/02/2008 20:36:20 - NOTICE : Next command is 10
09/02/2008 20:36:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:36:20 - NOTICE : WAIT triggered
09/02/2008 20:36:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:36:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:36:30 - NOTICE : GOTO triggered
09/02/2008 20:36:30 - NOTICE : Will skip script until line #9
09/02/2008 20:36:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:36:30 - NOTICE : IF triggered
09/02/2008 20:36:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:36:30 - DEBUG : 0 options bound
09/02/2008 20:36:30 - DEBUG : Analyzing condition...
09/02/2008 20:36:30 - DEBUG : First token is last_received_wol
09/02/2008 20:36:30 - DEBUG : First token is last_received_wol
09/02/2008 20:36:30 - DEBUG : First token is last_received_wol
09/02/2008 20:36:30 - DEBUG : First token is last_received_wol
09/02/2008 20:36:30 - DEBUG : First token is last_received_wol
09/02/2008 20:36:30 - DEBUG : Parsed as 4
09/02/2008 20:36:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:36:30 - DEBUG : Value 5 found
09/02/2008 20:36:30 - NOTICE : Latest WOL packet captured 271 seconds ago
09/02/2008 20:36:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:36:30 - NOTICE : Sub command returned False
09/02/2008 20:36:30 - DEBUG : Condition analyzed
09/02/2008 20:36:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:36:30 - NOTICE : Will skip next command
09/02/2008 20:36:30 - NOTICE : Next command is 10
09/02/2008 20:36:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:36:30 - NOTICE : WAIT triggered
09/02/2008 20:36:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:36:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:36:40 - NOTICE : GOTO triggered
09/02/2008 20:36:40 - NOTICE : Will skip script until line #9
09/02/2008 20:36:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:36:40 - NOTICE : IF triggered
09/02/2008 20:36:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:36:40 - DEBUG : 0 options bound
09/02/2008 20:36:40 - DEBUG : Analyzing condition...
09/02/2008 20:36:40 - DEBUG : First token is last_received_wol
09/02/2008 20:36:40 - DEBUG : First token is last_received_wol
09/02/2008 20:36:40 - DEBUG : First token is last_received_wol
09/02/2008 20:36:40 - DEBUG : First token is last_received_wol
09/02/2008 20:36:40 - DEBUG : First token is last_received_wol
09/02/2008 20:36:40 - DEBUG : Parsed as 4
09/02/2008 20:36:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:36:40 - DEBUG : Value 5 found
09/02/2008 20:36:40 - NOTICE : Latest WOL packet captured 281 seconds ago
09/02/2008 20:36:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:36:40 - NOTICE : Sub command returned False
09/02/2008 20:36:40 - DEBUG : Condition analyzed
09/02/2008 20:36:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:36:40 - NOTICE : Will skip next command
09/02/2008 20:36:40 - NOTICE : Next command is 10
09/02/2008 20:36:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:36:40 - NOTICE : WAIT triggered
09/02/2008 20:36:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:36:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:36:50 - NOTICE : GOTO triggered
09/02/2008 20:36:50 - NOTICE : Will skip script until line #9
09/02/2008 20:36:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:36:50 - NOTICE : IF triggered
09/02/2008 20:36:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:36:50 - DEBUG : 0 options bound
09/02/2008 20:36:50 - DEBUG : Analyzing condition...
09/02/2008 20:36:50 - DEBUG : First token is last_received_wol
09/02/2008 20:36:50 - DEBUG : First token is last_received_wol
09/02/2008 20:36:50 - DEBUG : First token is last_received_wol
09/02/2008 20:36:50 - DEBUG : First token is last_received_wol
09/02/2008 20:36:50 - DEBUG : First token is last_received_wol
09/02/2008 20:36:50 - DEBUG : Parsed as 4
09/02/2008 20:36:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:36:50 - DEBUG : Value 5 found
09/02/2008 20:36:50 - NOTICE : Latest WOL packet captured 291 seconds ago
09/02/2008 20:36:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:36:50 - NOTICE : Sub command returned False
09/02/2008 20:36:50 - DEBUG : Condition analyzed
09/02/2008 20:36:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:36:50 - NOTICE : Will skip next command
09/02/2008 20:36:50 - NOTICE : Next command is 10
09/02/2008 20:36:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:36:50 - NOTICE : WAIT triggered
09/02/2008 20:36:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:37:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:37:00 - NOTICE : GOTO triggered
09/02/2008 20:37:00 - NOTICE : Will skip script until line #9
09/02/2008 20:37:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:37:00 - NOTICE : IF triggered
09/02/2008 20:37:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:37:00 - DEBUG : 0 options bound
09/02/2008 20:37:00 - DEBUG : Analyzing condition...
09/02/2008 20:37:00 - DEBUG : First token is last_received_wol
09/02/2008 20:37:00 - DEBUG : First token is last_received_wol
09/02/2008 20:37:00 - DEBUG : First token is last_received_wol
09/02/2008 20:37:00 - DEBUG : First token is last_received_wol
09/02/2008 20:37:00 - DEBUG : First token is last_received_wol
09/02/2008 20:37:00 - DEBUG : Parsed as 4
09/02/2008 20:37:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:37:00 - DEBUG : Value 5 found
09/02/2008 20:37:00 - NOTICE : Latest WOL packet captured 301 seconds ago
09/02/2008 20:37:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:37:00 - NOTICE : Sub command returned False
09/02/2008 20:37:00 - DEBUG : Condition analyzed
09/02/2008 20:37:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:37:00 - NOTICE : Will skip next command
09/02/2008 20:37:00 - NOTICE : Next command is 10
09/02/2008 20:37:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:37:00 - NOTICE : WAIT triggered
09/02/2008 20:37:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:37:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:37:10 - NOTICE : GOTO triggered
09/02/2008 20:37:10 - NOTICE : Will skip script until line #9
09/02/2008 20:37:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:37:10 - NOTICE : IF triggered
09/02/2008 20:37:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:37:10 - DEBUG : 0 options bound
09/02/2008 20:37:10 - DEBUG : Analyzing condition...
09/02/2008 20:37:10 - DEBUG : First token is last_received_wol
09/02/2008 20:37:10 - DEBUG : First token is last_received_wol
09/02/2008 20:37:10 - DEBUG : First token is last_received_wol
09/02/2008 20:37:10 - DEBUG : First token is last_received_wol
09/02/2008 20:37:10 - DEBUG : First token is last_received_wol
09/02/2008 20:37:10 - DEBUG : Parsed as 4
09/02/2008 20:37:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:37:10 - DEBUG : Value 5 found
09/02/2008 20:37:10 - NOTICE : Latest WOL packet captured 311 seconds ago
09/02/2008 20:37:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:37:10 - NOTICE : Sub command returned False
09/02/2008 20:37:10 - DEBUG : Condition analyzed
09/02/2008 20:37:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:37:10 - NOTICE : Will skip next command
09/02/2008 20:37:10 - NOTICE : Next command is 10
09/02/2008 20:37:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:37:10 - NOTICE : WAIT triggered
09/02/2008 20:37:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:37:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:37:20 - NOTICE : GOTO triggered
09/02/2008 20:37:20 - NOTICE : Will skip script until line #9
09/02/2008 20:37:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:37:20 - NOTICE : IF triggered
09/02/2008 20:37:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:37:20 - DEBUG : 0 options bound
09/02/2008 20:37:20 - DEBUG : Analyzing condition...
09/02/2008 20:37:20 - DEBUG : First token is last_received_wol
09/02/2008 20:37:20 - DEBUG : First token is last_received_wol
09/02/2008 20:37:20 - DEBUG : First token is last_received_wol
09/02/2008 20:37:20 - DEBUG : First token is last_received_wol
09/02/2008 20:37:20 - DEBUG : First token is last_received_wol
09/02/2008 20:37:20 - DEBUG : Parsed as 4
09/02/2008 20:37:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:37:20 - DEBUG : Value 5 found
09/02/2008 20:37:20 - NOTICE : Latest WOL packet captured 321 seconds ago
09/02/2008 20:37:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:37:20 - NOTICE : Sub command returned False
09/02/2008 20:37:20 - DEBUG : Condition analyzed
09/02/2008 20:37:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:37:20 - NOTICE : Will skip next command
09/02/2008 20:37:20 - NOTICE : Next command is 10
09/02/2008 20:37:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:37:20 - NOTICE : WAIT triggered
09/02/2008 20:37:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:37:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:37:30 - NOTICE : GOTO triggered
09/02/2008 20:37:30 - NOTICE : Will skip script until line #9
09/02/2008 20:37:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:37:30 - NOTICE : IF triggered
09/02/2008 20:37:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:37:30 - DEBUG : 0 options bound
09/02/2008 20:37:30 - DEBUG : Analyzing condition...
09/02/2008 20:37:30 - DEBUG : First token is last_received_wol
09/02/2008 20:37:30 - DEBUG : First token is last_received_wol
09/02/2008 20:37:30 - DEBUG : First token is last_received_wol
09/02/2008 20:37:30 - DEBUG : First token is last_received_wol
09/02/2008 20:37:30 - DEBUG : First token is last_received_wol
09/02/2008 20:37:30 - DEBUG : Parsed as 4
09/02/2008 20:37:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:37:30 - DEBUG : Value 5 found
09/02/2008 20:37:30 - NOTICE : Latest WOL packet captured 331 seconds ago
09/02/2008 20:37:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:37:30 - NOTICE : Sub command returned False
09/02/2008 20:37:30 - DEBUG : Condition analyzed
09/02/2008 20:37:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:37:30 - NOTICE : Will skip next command
09/02/2008 20:37:30 - NOTICE : Next command is 10
09/02/2008 20:37:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:37:30 - NOTICE : WAIT triggered
09/02/2008 20:37:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:37:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:37:40 - NOTICE : GOTO triggered
09/02/2008 20:37:40 - NOTICE : Will skip script until line #9
09/02/2008 20:37:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:37:40 - NOTICE : IF triggered
09/02/2008 20:37:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:37:40 - DEBUG : 0 options bound
09/02/2008 20:37:40 - DEBUG : Analyzing condition...
09/02/2008 20:37:40 - DEBUG : First token is last_received_wol
09/02/2008 20:37:40 - DEBUG : First token is last_received_wol
09/02/2008 20:37:40 - DEBUG : First token is last_received_wol
09/02/2008 20:37:40 - DEBUG : First token is last_received_wol
09/02/2008 20:37:40 - DEBUG : First token is last_received_wol
09/02/2008 20:37:40 - DEBUG : Parsed as 4
09/02/2008 20:37:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:37:40 - DEBUG : Value 5 found
09/02/2008 20:37:40 - NOTICE : Latest WOL packet captured 341 seconds ago
09/02/2008 20:37:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:37:40 - NOTICE : Sub command returned False
09/02/2008 20:37:40 - DEBUG : Condition analyzed
09/02/2008 20:37:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:37:40 - NOTICE : Will skip next command
09/02/2008 20:37:40 - NOTICE : Next command is 10
09/02/2008 20:37:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:37:40 - NOTICE : WAIT triggered
09/02/2008 20:37:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:37:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:37:50 - NOTICE : GOTO triggered
09/02/2008 20:37:50 - NOTICE : Will skip script until line #9
09/02/2008 20:37:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:37:50 - NOTICE : IF triggered
09/02/2008 20:37:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:37:50 - DEBUG : 0 options bound
09/02/2008 20:37:50 - DEBUG : Analyzing condition...
09/02/2008 20:37:50 - DEBUG : First token is last_received_wol
09/02/2008 20:37:50 - DEBUG : First token is last_received_wol
09/02/2008 20:37:50 - DEBUG : First token is last_received_wol
09/02/2008 20:37:50 - DEBUG : First token is last_received_wol
09/02/2008 20:37:50 - DEBUG : First token is last_received_wol
09/02/2008 20:37:50 - DEBUG : Parsed as 4
09/02/2008 20:37:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:37:50 - DEBUG : Value 5 found
09/02/2008 20:37:50 - NOTICE : Latest WOL packet captured 351 seconds ago
09/02/2008 20:37:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:37:50 - NOTICE : Sub command returned False
09/02/2008 20:37:50 - DEBUG : Condition analyzed
09/02/2008 20:37:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:37:50 - NOTICE : Will skip next command
09/02/2008 20:37:50 - NOTICE : Next command is 10
09/02/2008 20:37:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:37:50 - NOTICE : WAIT triggered
09/02/2008 20:37:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:38:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:38:00 - NOTICE : GOTO triggered
09/02/2008 20:38:00 - NOTICE : Will skip script until line #9
09/02/2008 20:38:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:38:00 - NOTICE : IF triggered
09/02/2008 20:38:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:38:00 - DEBUG : 0 options bound
09/02/2008 20:38:00 - DEBUG : Analyzing condition...
09/02/2008 20:38:00 - DEBUG : First token is last_received_wol
09/02/2008 20:38:00 - DEBUG : First token is last_received_wol
09/02/2008 20:38:00 - DEBUG : First token is last_received_wol
09/02/2008 20:38:00 - DEBUG : First token is last_received_wol
09/02/2008 20:38:00 - DEBUG : First token is last_received_wol
09/02/2008 20:38:00 - DEBUG : Parsed as 4
09/02/2008 20:38:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:38:00 - DEBUG : Value 5 found
09/02/2008 20:38:00 - NOTICE : Latest WOL packet captured 361 seconds ago
09/02/2008 20:38:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:38:00 - NOTICE : Sub command returned False
09/02/2008 20:38:00 - DEBUG : Condition analyzed
09/02/2008 20:38:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:38:00 - NOTICE : Will skip next command
09/02/2008 20:38:00 - NOTICE : Next command is 10
09/02/2008 20:38:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:38:00 - NOTICE : WAIT triggered
09/02/2008 20:38:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:38:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:38:10 - NOTICE : GOTO triggered
09/02/2008 20:38:10 - NOTICE : Will skip script until line #9
09/02/2008 20:38:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:38:10 - NOTICE : IF triggered
09/02/2008 20:38:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:38:10 - DEBUG : 0 options bound
09/02/2008 20:38:10 - DEBUG : Analyzing condition...
09/02/2008 20:38:10 - DEBUG : First token is last_received_wol
09/02/2008 20:38:10 - DEBUG : First token is last_received_wol
09/02/2008 20:38:10 - DEBUG : First token is last_received_wol
09/02/2008 20:38:10 - DEBUG : First token is last_received_wol
09/02/2008 20:38:10 - DEBUG : First token is last_received_wol
09/02/2008 20:38:10 - DEBUG : Parsed as 4
09/02/2008 20:38:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:38:10 - DEBUG : Value 5 found
09/02/2008 20:38:10 - NOTICE : Latest WOL packet captured 371 seconds ago
09/02/2008 20:38:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:38:10 - NOTICE : Sub command returned False
09/02/2008 20:38:10 - DEBUG : Condition analyzed
09/02/2008 20:38:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:38:10 - NOTICE : Will skip next command
09/02/2008 20:38:10 - NOTICE : Next command is 10
09/02/2008 20:38:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:38:10 - NOTICE : WAIT triggered
09/02/2008 20:38:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:38:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:38:20 - NOTICE : GOTO triggered
09/02/2008 20:38:20 - NOTICE : Will skip script until line #9
09/02/2008 20:38:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:38:20 - NOTICE : IF triggered
09/02/2008 20:38:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:38:20 - DEBUG : 0 options bound
09/02/2008 20:38:20 - DEBUG : Analyzing condition...
09/02/2008 20:38:20 - DEBUG : First token is last_received_wol
09/02/2008 20:38:20 - DEBUG : First token is last_received_wol
09/02/2008 20:38:20 - DEBUG : First token is last_received_wol
09/02/2008 20:38:20 - DEBUG : First token is last_received_wol
09/02/2008 20:38:20 - DEBUG : First token is last_received_wol
09/02/2008 20:38:20 - DEBUG : Parsed as 4
09/02/2008 20:38:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:38:20 - DEBUG : Value 5 found
09/02/2008 20:38:20 - NOTICE : Latest WOL packet captured 381 seconds ago
09/02/2008 20:38:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:38:20 - NOTICE : Sub command returned False
09/02/2008 20:38:20 - DEBUG : Condition analyzed
09/02/2008 20:38:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:38:20 - NOTICE : Will skip next command
09/02/2008 20:38:20 - NOTICE : Next command is 10
09/02/2008 20:38:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:38:20 - NOTICE : WAIT triggered
09/02/2008 20:38:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:38:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:38:30 - NOTICE : GOTO triggered
09/02/2008 20:38:30 - NOTICE : Will skip script until line #9
09/02/2008 20:38:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:38:30 - NOTICE : IF triggered
09/02/2008 20:38:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:38:30 - DEBUG : 0 options bound
09/02/2008 20:38:30 - DEBUG : Analyzing condition...
09/02/2008 20:38:30 - DEBUG : First token is last_received_wol
09/02/2008 20:38:30 - DEBUG : First token is last_received_wol
09/02/2008 20:38:30 - DEBUG : First token is last_received_wol
09/02/2008 20:38:30 - DEBUG : First token is last_received_wol
09/02/2008 20:38:30 - DEBUG : First token is last_received_wol
09/02/2008 20:38:30 - DEBUG : Parsed as 4
09/02/2008 20:38:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:38:30 - DEBUG : Value 5 found
09/02/2008 20:38:30 - NOTICE : Latest WOL packet captured 391 seconds ago
09/02/2008 20:38:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:38:30 - NOTICE : Sub command returned False
09/02/2008 20:38:30 - DEBUG : Condition analyzed
09/02/2008 20:38:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:38:30 - NOTICE : Will skip next command
09/02/2008 20:38:30 - NOTICE : Next command is 10
09/02/2008 20:38:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:38:30 - NOTICE : WAIT triggered
09/02/2008 20:38:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:38:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:38:40 - NOTICE : GOTO triggered
09/02/2008 20:38:40 - NOTICE : Will skip script until line #9
09/02/2008 20:38:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:38:40 - NOTICE : IF triggered
09/02/2008 20:38:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:38:40 - DEBUG : 0 options bound
09/02/2008 20:38:40 - DEBUG : Analyzing condition...
09/02/2008 20:38:40 - DEBUG : First token is last_received_wol
09/02/2008 20:38:40 - DEBUG : First token is last_received_wol
09/02/2008 20:38:40 - DEBUG : First token is last_received_wol
09/02/2008 20:38:40 - DEBUG : First token is last_received_wol
09/02/2008 20:38:40 - DEBUG : First token is last_received_wol
09/02/2008 20:38:40 - DEBUG : Parsed as 4
09/02/2008 20:38:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:38:40 - DEBUG : Value 5 found
09/02/2008 20:38:40 - NOTICE : Latest WOL packet captured 401 seconds ago
09/02/2008 20:38:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:38:40 - NOTICE : Sub command returned False
09/02/2008 20:38:40 - DEBUG : Condition analyzed
09/02/2008 20:38:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:38:40 - NOTICE : Will skip next command
09/02/2008 20:38:40 - NOTICE : Next command is 10
09/02/2008 20:38:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:38:40 - NOTICE : WAIT triggered
09/02/2008 20:38:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:38:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:38:50 - NOTICE : GOTO triggered
09/02/2008 20:38:50 - NOTICE : Will skip script until line #9
09/02/2008 20:38:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:38:50 - NOTICE : IF triggered
09/02/2008 20:38:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:38:50 - DEBUG : 0 options bound
09/02/2008 20:38:50 - DEBUG : Analyzing condition...
09/02/2008 20:38:50 - DEBUG : First token is last_received_wol
09/02/2008 20:38:50 - DEBUG : First token is last_received_wol
09/02/2008 20:38:50 - DEBUG : First token is last_received_wol
09/02/2008 20:38:50 - DEBUG : First token is last_received_wol
09/02/2008 20:38:50 - DEBUG : First token is last_received_wol
09/02/2008 20:38:50 - DEBUG : Parsed as 4
09/02/2008 20:38:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:38:50 - DEBUG : Value 5 found
09/02/2008 20:38:50 - NOTICE : Latest WOL packet captured 411 seconds ago
09/02/2008 20:38:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:38:50 - NOTICE : Sub command returned False
09/02/2008 20:38:50 - DEBUG : Condition analyzed
09/02/2008 20:38:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:38:50 - NOTICE : Will skip next command
09/02/2008 20:38:50 - NOTICE : Next command is 10
09/02/2008 20:38:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:38:50 - NOTICE : WAIT triggered
09/02/2008 20:38:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:39:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:39:00 - NOTICE : GOTO triggered
09/02/2008 20:39:00 - NOTICE : Will skip script until line #9
09/02/2008 20:39:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:39:00 - NOTICE : IF triggered
09/02/2008 20:39:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:39:00 - DEBUG : 0 options bound
09/02/2008 20:39:00 - DEBUG : Analyzing condition...
09/02/2008 20:39:00 - DEBUG : First token is last_received_wol
09/02/2008 20:39:00 - DEBUG : First token is last_received_wol
09/02/2008 20:39:00 - DEBUG : First token is last_received_wol
09/02/2008 20:39:00 - DEBUG : First token is last_received_wol
09/02/2008 20:39:00 - DEBUG : First token is last_received_wol
09/02/2008 20:39:00 - DEBUG : Parsed as 4
09/02/2008 20:39:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:39:00 - DEBUG : Value 5 found
09/02/2008 20:39:00 - NOTICE : Latest WOL packet captured 421 seconds ago
09/02/2008 20:39:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:39:00 - NOTICE : Sub command returned False
09/02/2008 20:39:00 - DEBUG : Condition analyzed
09/02/2008 20:39:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:39:00 - NOTICE : Will skip next command
09/02/2008 20:39:00 - NOTICE : Next command is 10
09/02/2008 20:39:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:39:00 - NOTICE : WAIT triggered
09/02/2008 20:39:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:39:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:39:10 - NOTICE : GOTO triggered
09/02/2008 20:39:10 - NOTICE : Will skip script until line #9
09/02/2008 20:39:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:39:10 - NOTICE : IF triggered
09/02/2008 20:39:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:39:10 - DEBUG : 0 options bound
09/02/2008 20:39:10 - DEBUG : Analyzing condition...
09/02/2008 20:39:10 - DEBUG : First token is last_received_wol
09/02/2008 20:39:10 - DEBUG : First token is last_received_wol
09/02/2008 20:39:10 - DEBUG : First token is last_received_wol
09/02/2008 20:39:10 - DEBUG : First token is last_received_wol
09/02/2008 20:39:10 - DEBUG : First token is last_received_wol
09/02/2008 20:39:10 - DEBUG : Parsed as 4
09/02/2008 20:39:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:39:10 - DEBUG : Value 5 found
09/02/2008 20:39:10 - NOTICE : Latest WOL packet captured 431 seconds ago
09/02/2008 20:39:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:39:10 - NOTICE : Sub command returned False
09/02/2008 20:39:10 - DEBUG : Condition analyzed
09/02/2008 20:39:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:39:10 - NOTICE : Will skip next command
09/02/2008 20:39:10 - NOTICE : Next command is 10
09/02/2008 20:39:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:39:10 - NOTICE : WAIT triggered
09/02/2008 20:39:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:39:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:39:20 - NOTICE : GOTO triggered
09/02/2008 20:39:20 - NOTICE : Will skip script until line #9
09/02/2008 20:39:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:39:20 - NOTICE : IF triggered
09/02/2008 20:39:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:39:20 - DEBUG : 0 options bound
09/02/2008 20:39:20 - DEBUG : Analyzing condition...
09/02/2008 20:39:20 - DEBUG : First token is last_received_wol
09/02/2008 20:39:20 - DEBUG : First token is last_received_wol
09/02/2008 20:39:20 - DEBUG : First token is last_received_wol
09/02/2008 20:39:20 - DEBUG : First token is last_received_wol
09/02/2008 20:39:20 - DEBUG : First token is last_received_wol
09/02/2008 20:39:20 - DEBUG : Parsed as 4
09/02/2008 20:39:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:39:20 - DEBUG : Value 5 found
09/02/2008 20:39:20 - NOTICE : Latest WOL packet captured 441 seconds ago
09/02/2008 20:39:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:39:20 - NOTICE : Sub command returned False
09/02/2008 20:39:20 - DEBUG : Condition analyzed
09/02/2008 20:39:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:39:20 - NOTICE : Will skip next command
09/02/2008 20:39:20 - NOTICE : Next command is 10
09/02/2008 20:39:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:39:20 - NOTICE : WAIT triggered
09/02/2008 20:39:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:39:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:39:30 - NOTICE : GOTO triggered
09/02/2008 20:39:30 - NOTICE : Will skip script until line #9
09/02/2008 20:39:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:39:30 - NOTICE : IF triggered
09/02/2008 20:39:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:39:30 - DEBUG : 0 options bound
09/02/2008 20:39:30 - DEBUG : Analyzing condition...
09/02/2008 20:39:30 - DEBUG : First token is last_received_wol
09/02/2008 20:39:30 - DEBUG : First token is last_received_wol
09/02/2008 20:39:30 - DEBUG : First token is last_received_wol
09/02/2008 20:39:30 - DEBUG : First token is last_received_wol
09/02/2008 20:39:30 - DEBUG : First token is last_received_wol
09/02/2008 20:39:30 - DEBUG : Parsed as 4
09/02/2008 20:39:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:39:30 - DEBUG : Value 5 found
09/02/2008 20:39:30 - NOTICE : Latest WOL packet captured 451 seconds ago
09/02/2008 20:39:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:39:30 - NOTICE : Sub command returned False
09/02/2008 20:39:30 - DEBUG : Condition analyzed
09/02/2008 20:39:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:39:30 - NOTICE : Will skip next command
09/02/2008 20:39:30 - NOTICE : Next command is 10
09/02/2008 20:39:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:39:30 - NOTICE : WAIT triggered
09/02/2008 20:39:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:39:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:39:40 - NOTICE : GOTO triggered
09/02/2008 20:39:40 - NOTICE : Will skip script until line #9
09/02/2008 20:39:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:39:40 - NOTICE : IF triggered
09/02/2008 20:39:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:39:40 - DEBUG : 0 options bound
09/02/2008 20:39:40 - DEBUG : Analyzing condition...
09/02/2008 20:39:40 - DEBUG : First token is last_received_wol
09/02/2008 20:39:40 - DEBUG : First token is last_received_wol
09/02/2008 20:39:40 - DEBUG : First token is last_received_wol
09/02/2008 20:39:40 - DEBUG : First token is last_received_wol
09/02/2008 20:39:40 - DEBUG : First token is last_received_wol
09/02/2008 20:39:40 - DEBUG : Parsed as 4
09/02/2008 20:39:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:39:40 - DEBUG : Value 5 found
09/02/2008 20:39:40 - NOTICE : Latest WOL packet captured 461 seconds ago
09/02/2008 20:39:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:39:40 - NOTICE : Sub command returned False
09/02/2008 20:39:40 - DEBUG : Condition analyzed
09/02/2008 20:39:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:39:40 - NOTICE : Will skip next command
09/02/2008 20:39:40 - NOTICE : Next command is 10
09/02/2008 20:39:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:39:40 - NOTICE : WAIT triggered
09/02/2008 20:39:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:39:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:39:50 - NOTICE : GOTO triggered
09/02/2008 20:39:50 - NOTICE : Will skip script until line #9
09/02/2008 20:39:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:39:50 - NOTICE : IF triggered
09/02/2008 20:39:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:39:50 - DEBUG : 0 options bound
09/02/2008 20:39:50 - DEBUG : Analyzing condition...
09/02/2008 20:39:50 - DEBUG : First token is last_received_wol
09/02/2008 20:39:50 - DEBUG : First token is last_received_wol
09/02/2008 20:39:50 - DEBUG : First token is last_received_wol
09/02/2008 20:39:50 - DEBUG : First token is last_received_wol
09/02/2008 20:39:50 - DEBUG : First token is last_received_wol
09/02/2008 20:39:50 - DEBUG : Parsed as 4
09/02/2008 20:39:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:39:50 - DEBUG : Value 5 found
09/02/2008 20:39:50 - NOTICE : Latest WOL packet captured 471 seconds ago
09/02/2008 20:39:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:39:50 - NOTICE : Sub command returned False
09/02/2008 20:39:50 - DEBUG : Condition analyzed
09/02/2008 20:39:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:39:50 - NOTICE : Will skip next command
09/02/2008 20:39:50 - NOTICE : Next command is 10
09/02/2008 20:39:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:39:50 - NOTICE : WAIT triggered
09/02/2008 20:39:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:40:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:40:00 - NOTICE : GOTO triggered
09/02/2008 20:40:00 - NOTICE : Will skip script until line #9
09/02/2008 20:40:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:40:00 - NOTICE : IF triggered
09/02/2008 20:40:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:40:00 - DEBUG : 0 options bound
09/02/2008 20:40:00 - DEBUG : Analyzing condition...
09/02/2008 20:40:00 - DEBUG : First token is last_received_wol
09/02/2008 20:40:00 - DEBUG : First token is last_received_wol
09/02/2008 20:40:00 - DEBUG : First token is last_received_wol
09/02/2008 20:40:00 - DEBUG : First token is last_received_wol
09/02/2008 20:40:00 - DEBUG : First token is last_received_wol
09/02/2008 20:40:00 - DEBUG : Parsed as 4
09/02/2008 20:40:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:40:00 - DEBUG : Value 5 found
09/02/2008 20:40:00 - NOTICE : Latest WOL packet captured 481 seconds ago
09/02/2008 20:40:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:40:00 - NOTICE : Sub command returned False
09/02/2008 20:40:00 - DEBUG : Condition analyzed
09/02/2008 20:40:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:40:00 - NOTICE : Will skip next command
09/02/2008 20:40:00 - NOTICE : Next command is 10
09/02/2008 20:40:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:40:00 - NOTICE : WAIT triggered
09/02/2008 20:40:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:40:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:40:10 - NOTICE : GOTO triggered
09/02/2008 20:40:10 - NOTICE : Will skip script until line #9
09/02/2008 20:40:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:40:10 - NOTICE : IF triggered
09/02/2008 20:40:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:40:10 - DEBUG : 0 options bound
09/02/2008 20:40:10 - DEBUG : Analyzing condition...
09/02/2008 20:40:10 - DEBUG : First token is last_received_wol
09/02/2008 20:40:10 - DEBUG : First token is last_received_wol
09/02/2008 20:40:10 - DEBUG : First token is last_received_wol
09/02/2008 20:40:10 - DEBUG : First token is last_received_wol
09/02/2008 20:40:10 - DEBUG : First token is last_received_wol
09/02/2008 20:40:10 - DEBUG : Parsed as 4
09/02/2008 20:40:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:40:10 - DEBUG : Value 5 found
09/02/2008 20:40:10 - NOTICE : Latest WOL packet captured 491 seconds ago
09/02/2008 20:40:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:40:10 - NOTICE : Sub command returned False
09/02/2008 20:40:10 - DEBUG : Condition analyzed
09/02/2008 20:40:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:40:10 - NOTICE : Will skip next command
09/02/2008 20:40:10 - NOTICE : Next command is 10
09/02/2008 20:40:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:40:10 - NOTICE : WAIT triggered
09/02/2008 20:40:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:40:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:40:20 - NOTICE : GOTO triggered
09/02/2008 20:40:20 - NOTICE : Will skip script until line #9
09/02/2008 20:40:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:40:20 - NOTICE : IF triggered
09/02/2008 20:40:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:40:20 - DEBUG : 0 options bound
09/02/2008 20:40:20 - DEBUG : Analyzing condition...
09/02/2008 20:40:20 - DEBUG : First token is last_received_wol
09/02/2008 20:40:20 - DEBUG : First token is last_received_wol
09/02/2008 20:40:20 - DEBUG : First token is last_received_wol
09/02/2008 20:40:20 - DEBUG : First token is last_received_wol
09/02/2008 20:40:20 - DEBUG : First token is last_received_wol
09/02/2008 20:40:20 - DEBUG : Parsed as 4
09/02/2008 20:40:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:40:20 - DEBUG : Value 5 found
09/02/2008 20:40:20 - NOTICE : Latest WOL packet captured 501 seconds ago
09/02/2008 20:40:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:40:20 - NOTICE : Sub command returned False
09/02/2008 20:40:20 - DEBUG : Condition analyzed
09/02/2008 20:40:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:40:20 - NOTICE : Will skip next command
09/02/2008 20:40:20 - NOTICE : Next command is 10
09/02/2008 20:40:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:40:20 - NOTICE : WAIT triggered
09/02/2008 20:40:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:40:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:40:30 - NOTICE : GOTO triggered
09/02/2008 20:40:30 - NOTICE : Will skip script until line #9
09/02/2008 20:40:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:40:30 - NOTICE : IF triggered
09/02/2008 20:40:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:40:30 - DEBUG : 0 options bound
09/02/2008 20:40:30 - DEBUG : Analyzing condition...
09/02/2008 20:40:30 - DEBUG : First token is last_received_wol
09/02/2008 20:40:30 - DEBUG : First token is last_received_wol
09/02/2008 20:40:30 - DEBUG : First token is last_received_wol
09/02/2008 20:40:30 - DEBUG : First token is last_received_wol
09/02/2008 20:40:30 - DEBUG : First token is last_received_wol
09/02/2008 20:40:30 - DEBUG : Parsed as 4
09/02/2008 20:40:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:40:30 - DEBUG : Value 5 found
09/02/2008 20:40:30 - NOTICE : Latest WOL packet captured 511 seconds ago
09/02/2008 20:40:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:40:30 - NOTICE : Sub command returned False
09/02/2008 20:40:30 - DEBUG : Condition analyzed
09/02/2008 20:40:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:40:30 - NOTICE : Will skip next command
09/02/2008 20:40:30 - NOTICE : Next command is 10
09/02/2008 20:40:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:40:30 - NOTICE : WAIT triggered
09/02/2008 20:40:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:40:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:40:40 - NOTICE : GOTO triggered
09/02/2008 20:40:40 - NOTICE : Will skip script until line #9
09/02/2008 20:40:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:40:40 - NOTICE : IF triggered
09/02/2008 20:40:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:40:40 - DEBUG : 0 options bound
09/02/2008 20:40:40 - DEBUG : Analyzing condition...
09/02/2008 20:40:40 - DEBUG : First token is last_received_wol
09/02/2008 20:40:40 - DEBUG : First token is last_received_wol
09/02/2008 20:40:40 - DEBUG : First token is last_received_wol
09/02/2008 20:40:40 - DEBUG : First token is last_received_wol
09/02/2008 20:40:40 - DEBUG : First token is last_received_wol
09/02/2008 20:40:40 - DEBUG : Parsed as 4
09/02/2008 20:40:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:40:40 - DEBUG : Value 5 found
09/02/2008 20:40:40 - NOTICE : Latest WOL packet captured 521 seconds ago
09/02/2008 20:40:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:40:40 - NOTICE : Sub command returned False
09/02/2008 20:40:40 - DEBUG : Condition analyzed
09/02/2008 20:40:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:40:40 - NOTICE : Will skip next command
09/02/2008 20:40:40 - NOTICE : Next command is 10
09/02/2008 20:40:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:40:40 - NOTICE : WAIT triggered
09/02/2008 20:40:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:40:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:40:50 - NOTICE : GOTO triggered
09/02/2008 20:40:50 - NOTICE : Will skip script until line #9
09/02/2008 20:40:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:40:50 - NOTICE : IF triggered
09/02/2008 20:40:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:40:50 - DEBUG : 0 options bound
09/02/2008 20:40:50 - DEBUG : Analyzing condition...
09/02/2008 20:40:50 - DEBUG : First token is last_received_wol
09/02/2008 20:40:50 - DEBUG : First token is last_received_wol
09/02/2008 20:40:50 - DEBUG : First token is last_received_wol
09/02/2008 20:40:50 - DEBUG : First token is last_received_wol
09/02/2008 20:40:50 - DEBUG : First token is last_received_wol
09/02/2008 20:40:50 - DEBUG : Parsed as 4
09/02/2008 20:40:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:40:50 - DEBUG : Value 5 found
09/02/2008 20:40:50 - NOTICE : Latest WOL packet captured 531 seconds ago
09/02/2008 20:40:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:40:50 - NOTICE : Sub command returned False
09/02/2008 20:40:50 - DEBUG : Condition analyzed
09/02/2008 20:40:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:40:50 - NOTICE : Will skip next command
09/02/2008 20:40:50 - NOTICE : Next command is 10
09/02/2008 20:40:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:40:50 - NOTICE : WAIT triggered
09/02/2008 20:40:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:41:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:41:00 - NOTICE : GOTO triggered
09/02/2008 20:41:00 - NOTICE : Will skip script until line #9
09/02/2008 20:41:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:41:00 - NOTICE : IF triggered
09/02/2008 20:41:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:41:00 - DEBUG : 0 options bound
09/02/2008 20:41:00 - DEBUG : Analyzing condition...
09/02/2008 20:41:00 - DEBUG : First token is last_received_wol
09/02/2008 20:41:00 - DEBUG : First token is last_received_wol
09/02/2008 20:41:00 - DEBUG : First token is last_received_wol
09/02/2008 20:41:00 - DEBUG : First token is last_received_wol
09/02/2008 20:41:00 - DEBUG : First token is last_received_wol
09/02/2008 20:41:00 - DEBUG : Parsed as 4
09/02/2008 20:41:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:41:00 - DEBUG : Value 5 found
09/02/2008 20:41:00 - NOTICE : Latest WOL packet captured 541 seconds ago
09/02/2008 20:41:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:41:00 - NOTICE : Sub command returned False
09/02/2008 20:41:00 - DEBUG : Condition analyzed
09/02/2008 20:41:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:41:00 - NOTICE : Will skip next command
09/02/2008 20:41:00 - NOTICE : Next command is 10
09/02/2008 20:41:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:41:00 - NOTICE : WAIT triggered
09/02/2008 20:41:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:41:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:41:10 - NOTICE : GOTO triggered
09/02/2008 20:41:10 - NOTICE : Will skip script until line #9
09/02/2008 20:41:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:41:10 - NOTICE : IF triggered
09/02/2008 20:41:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:41:10 - DEBUG : 0 options bound
09/02/2008 20:41:10 - DEBUG : Analyzing condition...
09/02/2008 20:41:10 - DEBUG : First token is last_received_wol
09/02/2008 20:41:10 - DEBUG : First token is last_received_wol
09/02/2008 20:41:10 - DEBUG : First token is last_received_wol
09/02/2008 20:41:10 - DEBUG : First token is last_received_wol
09/02/2008 20:41:10 - DEBUG : First token is last_received_wol
09/02/2008 20:41:10 - DEBUG : Parsed as 4
09/02/2008 20:41:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:41:10 - DEBUG : Value 5 found
09/02/2008 20:41:10 - NOTICE : Latest WOL packet captured 551 seconds ago
09/02/2008 20:41:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:41:10 - NOTICE : Sub command returned False
09/02/2008 20:41:10 - DEBUG : Condition analyzed
09/02/2008 20:41:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:41:10 - NOTICE : Will skip next command
09/02/2008 20:41:10 - NOTICE : Next command is 10
09/02/2008 20:41:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:41:10 - NOTICE : WAIT triggered
09/02/2008 20:41:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:41:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:41:20 - NOTICE : GOTO triggered
09/02/2008 20:41:20 - NOTICE : Will skip script until line #9
09/02/2008 20:41:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:41:20 - NOTICE : IF triggered
09/02/2008 20:41:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:41:20 - DEBUG : 0 options bound
09/02/2008 20:41:20 - DEBUG : Analyzing condition...
09/02/2008 20:41:20 - DEBUG : First token is last_received_wol
09/02/2008 20:41:20 - DEBUG : First token is last_received_wol
09/02/2008 20:41:20 - DEBUG : First token is last_received_wol
09/02/2008 20:41:20 - DEBUG : First token is last_received_wol
09/02/2008 20:41:20 - DEBUG : First token is last_received_wol
09/02/2008 20:41:20 - DEBUG : Parsed as 4
09/02/2008 20:41:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:41:20 - DEBUG : Value 5 found
09/02/2008 20:41:20 - NOTICE : Latest WOL packet captured 561 seconds ago
09/02/2008 20:41:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:41:20 - NOTICE : Sub command returned False
09/02/2008 20:41:20 - DEBUG : Condition analyzed
09/02/2008 20:41:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:41:20 - NOTICE : Will skip next command
09/02/2008 20:41:20 - NOTICE : Next command is 10
09/02/2008 20:41:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:41:20 - NOTICE : WAIT triggered
09/02/2008 20:41:20 - NOTICE : Will wait for 10000ms
09/02/2008 20:41:30 - DEBUG : Command #13 [3] triggered
09/02/2008 20:41:30 - NOTICE : GOTO triggered
09/02/2008 20:41:30 - NOTICE : Will skip script until line #9
09/02/2008 20:41:30 - DEBUG : Command #10 [1] triggered
09/02/2008 20:41:30 - NOTICE : IF triggered
09/02/2008 20:41:30 - DEBUG : Default ReverseResult = False
09/02/2008 20:41:30 - DEBUG : 0 options bound
09/02/2008 20:41:30 - DEBUG : Analyzing condition...
09/02/2008 20:41:30 - DEBUG : First token is last_received_wol
09/02/2008 20:41:30 - DEBUG : First token is last_received_wol
09/02/2008 20:41:30 - DEBUG : First token is last_received_wol
09/02/2008 20:41:30 - DEBUG : First token is last_received_wol
09/02/2008 20:41:30 - DEBUG : First token is last_received_wol
09/02/2008 20:41:30 - DEBUG : Parsed as 4
09/02/2008 20:41:30 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:41:30 - DEBUG : Value 5 found
09/02/2008 20:41:30 - NOTICE : Latest WOL packet captured 571 seconds ago
09/02/2008 20:41:30 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:41:30 - NOTICE : Sub command returned False
09/02/2008 20:41:30 - DEBUG : Condition analyzed
09/02/2008 20:41:30 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:41:30 - NOTICE : Will skip next command
09/02/2008 20:41:30 - NOTICE : Next command is 10
09/02/2008 20:41:30 - DEBUG : Command #12 [5] triggered
09/02/2008 20:41:30 - NOTICE : WAIT triggered
09/02/2008 20:41:30 - NOTICE : Will wait for 10000ms
09/02/2008 20:41:40 - DEBUG : Command #13 [3] triggered
09/02/2008 20:41:40 - NOTICE : GOTO triggered
09/02/2008 20:41:40 - NOTICE : Will skip script until line #9
09/02/2008 20:41:40 - DEBUG : Command #10 [1] triggered
09/02/2008 20:41:40 - NOTICE : IF triggered
09/02/2008 20:41:40 - DEBUG : Default ReverseResult = False
09/02/2008 20:41:40 - DEBUG : 0 options bound
09/02/2008 20:41:40 - DEBUG : Analyzing condition...
09/02/2008 20:41:40 - DEBUG : First token is last_received_wol
09/02/2008 20:41:40 - DEBUG : First token is last_received_wol
09/02/2008 20:41:40 - DEBUG : First token is last_received_wol
09/02/2008 20:41:40 - DEBUG : First token is last_received_wol
09/02/2008 20:41:40 - DEBUG : First token is last_received_wol
09/02/2008 20:41:40 - DEBUG : Parsed as 4
09/02/2008 20:41:40 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:41:40 - DEBUG : Value 5 found
09/02/2008 20:41:40 - NOTICE : Latest WOL packet captured 581 seconds ago
09/02/2008 20:41:40 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:41:40 - NOTICE : Sub command returned False
09/02/2008 20:41:40 - DEBUG : Condition analyzed
09/02/2008 20:41:40 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:41:40 - NOTICE : Will skip next command
09/02/2008 20:41:40 - NOTICE : Next command is 10
09/02/2008 20:41:40 - DEBUG : Command #12 [5] triggered
09/02/2008 20:41:40 - NOTICE : WAIT triggered
09/02/2008 20:41:40 - NOTICE : Will wait for 10000ms
09/02/2008 20:41:50 - DEBUG : Command #13 [3] triggered
09/02/2008 20:41:50 - NOTICE : GOTO triggered
09/02/2008 20:41:50 - NOTICE : Will skip script until line #9
09/02/2008 20:41:50 - DEBUG : Command #10 [1] triggered
09/02/2008 20:41:50 - NOTICE : IF triggered
09/02/2008 20:41:50 - DEBUG : Default ReverseResult = False
09/02/2008 20:41:50 - DEBUG : 0 options bound
09/02/2008 20:41:50 - DEBUG : Analyzing condition...
09/02/2008 20:41:50 - DEBUG : First token is last_received_wol
09/02/2008 20:41:50 - DEBUG : First token is last_received_wol
09/02/2008 20:41:50 - DEBUG : First token is last_received_wol
09/02/2008 20:41:50 - DEBUG : First token is last_received_wol
09/02/2008 20:41:50 - DEBUG : First token is last_received_wol
09/02/2008 20:41:50 - DEBUG : Parsed as 4
09/02/2008 20:41:50 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:41:50 - DEBUG : Value 5 found
09/02/2008 20:41:50 - NOTICE : Latest WOL packet captured 591 seconds ago
09/02/2008 20:41:50 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:41:50 - NOTICE : Sub command returned False
09/02/2008 20:41:50 - DEBUG : Condition analyzed
09/02/2008 20:41:50 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:41:50 - NOTICE : Will skip next command
09/02/2008 20:41:50 - NOTICE : Next command is 10
09/02/2008 20:41:50 - DEBUG : Command #12 [5] triggered
09/02/2008 20:41:50 - NOTICE : WAIT triggered
09/02/2008 20:41:50 - NOTICE : Will wait for 10000ms
09/02/2008 20:42:00 - DEBUG : Command #13 [3] triggered
09/02/2008 20:42:00 - NOTICE : GOTO triggered
09/02/2008 20:42:00 - NOTICE : Will skip script until line #9
09/02/2008 20:42:00 - DEBUG : Command #10 [1] triggered
09/02/2008 20:42:00 - NOTICE : IF triggered
09/02/2008 20:42:00 - DEBUG : Default ReverseResult = False
09/02/2008 20:42:00 - DEBUG : 0 options bound
09/02/2008 20:42:00 - DEBUG : Analyzing condition...
09/02/2008 20:42:00 - DEBUG : First token is last_received_wol
09/02/2008 20:42:00 - DEBUG : First token is last_received_wol
09/02/2008 20:42:00 - DEBUG : First token is last_received_wol
09/02/2008 20:42:00 - DEBUG : First token is last_received_wol
09/02/2008 20:42:00 - DEBUG : First token is last_received_wol
09/02/2008 20:42:00 - DEBUG : Parsed as 4
09/02/2008 20:42:00 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:42:00 - DEBUG : Value 5 found
09/02/2008 20:42:00 - NOTICE : Latest WOL packet captured 601 seconds ago
09/02/2008 20:42:00 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:42:00 - NOTICE : Sub command returned False
09/02/2008 20:42:00 - DEBUG : Condition analyzed
09/02/2008 20:42:00 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:42:00 - NOTICE : Will skip next command
09/02/2008 20:42:00 - NOTICE : Next command is 10
09/02/2008 20:42:00 - DEBUG : Command #12 [5] triggered
09/02/2008 20:42:00 - NOTICE : WAIT triggered
09/02/2008 20:42:00 - NOTICE : Will wait for 10000ms
09/02/2008 20:42:10 - DEBUG : Command #13 [3] triggered
09/02/2008 20:42:10 - NOTICE : GOTO triggered
09/02/2008 20:42:10 - NOTICE : Will skip script until line #9
09/02/2008 20:42:10 - DEBUG : Command #10 [1] triggered
09/02/2008 20:42:10 - NOTICE : IF triggered
09/02/2008 20:42:10 - DEBUG : Default ReverseResult = False
09/02/2008 20:42:10 - DEBUG : 0 options bound
09/02/2008 20:42:10 - DEBUG : Analyzing condition...
09/02/2008 20:42:10 - DEBUG : First token is last_received_wol
09/02/2008 20:42:10 - DEBUG : First token is last_received_wol
09/02/2008 20:42:10 - DEBUG : First token is last_received_wol
09/02/2008 20:42:10 - DEBUG : First token is last_received_wol
09/02/2008 20:42:10 - DEBUG : First token is last_received_wol
09/02/2008 20:42:10 - DEBUG : Parsed as 4
09/02/2008 20:42:10 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:42:10 - DEBUG : Value 5 found
09/02/2008 20:42:10 - NOTICE : Latest WOL packet captured 611 seconds ago
09/02/2008 20:42:10 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:42:10 - NOTICE : Sub command returned False
09/02/2008 20:42:10 - DEBUG : Condition analyzed
09/02/2008 20:42:10 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:42:10 - NOTICE : Will skip next command
09/02/2008 20:42:10 - NOTICE : Next command is 10
09/02/2008 20:42:10 - DEBUG : Command #12 [5] triggered
09/02/2008 20:42:10 - NOTICE : WAIT triggered
09/02/2008 20:42:10 - NOTICE : Will wait for 10000ms
09/02/2008 20:42:20 - DEBUG : Command #13 [3] triggered
09/02/2008 20:42:20 - NOTICE : GOTO triggered
09/02/2008 20:42:20 - NOTICE : Will skip script until line #9
09/02/2008 20:42:20 - DEBUG : Command #10 [1] triggered
09/02/2008 20:42:20 - NOTICE : IF triggered
09/02/2008 20:42:20 - DEBUG : Default ReverseResult = False
09/02/2008 20:42:20 - DEBUG : 0 options bound
09/02/2008 20:42:20 - DEBUG : Analyzing condition...
09/02/2008 20:42:20 - DEBUG : First token is last_received_wol
09/02/2008 20:42:20 - DEBUG : First token is last_received_wol
09/02/2008 20:42:20 - DEBUG : First token is last_received_wol
09/02/2008 20:42:20 - DEBUG : First token is last_received_wol
09/02/2008 20:42:20 - DEBUG : First token is last_received_wol
09/02/2008 20:42:20 - DEBUG : Parsed as 4
09/02/2008 20:42:20 - NOTICE : LAST_RECEIVED_WOL triggered
09/02/2008 20:42:20 - DEBUG : Value 5 found
09/02/2008 20:42:20 - NOTICE : Latest WOL packet captured 621 seconds ago
09/02/2008 20:42:20 - NOTICE : Signal sent when threshold <= 5
09/02/2008 20:42:20 - NOTICE : Sub command returned False
09/02/2008 20:42:20 - DEBUG : Condition analyzed
09/02/2008 20:42:20 - DEBUG : Test returned False with errorCode = 0
09/02/2008 20:42:20 - NOTICE : Will skip next command
09/02/2008 20:42:20 - NOTICE : Next command is 10
09/02/2008 20:42:20 - DEBUG : Command #12 [5] triggered
09/02/2008 20:42:20 - NOTICE : WAIT triggered
09/02/2008 20:42:20 - NOTICE : Will wait fo
thanks for the logs. (and sorry for not anwering instantaneously but I don't pay a visit to the Mediaportal forums as frequently as I used to)
well... it appears the binary 'just' hung as you've noticed. The logs don't show anything out of the ordinary.
It appears as if either it was killed by an external app or the network stack behaved very very badly (the only part out of reach of the main program, it is an external layer on top of the proggie).
I've read a bit of the source code and it was written in pascal object: I don't have the corresponding programming environment ready in order to start a debugging session right now. I'm affraid you're quite on your own a the moment, I'm sincerely sorry. This program should be considered as 'discontinued' since it is now fairly old. However I will try to simulate an environment fairly similar to yours and fix this (if it's a bug) as soon as I can (this wkend at best). I just remember that it worked well when I had the need to use this proggie, the setup was much simpler though.
basically because I needed to run the script at system power on (without any user logging in) I thought to put the script in the Startup/Shutdown script folder as part of the machine policy group and run the script as SYSTEM user, unfortunately Windows after executing correctly the script has an internal timeout of 10 minutes after that it automatically shout down any script run in that way, reason? who knows, I guess for security
The fix is simply to run the same script using Task Scheduler which has an option to run script at system startup and in this way the script is running under Administrator user which is fine for me and it even still running when you log on/off as administrator
for you help I was going to tear for you kindness...
BTW I know that is not the right place, but did you ever experienced slow down in system performances after resuming from stand by?
so, i don't know anything about scripts, but i'd like to get one working that boots directly to mediaportal (it's an htpc). when i close mediaportal, i'd like the system to shut off.
the main profile is called vintage. if it was possible to log in under that and have this happen, that'd be great. i'd also like to have an administrator profile that requires a logon password to get into that'd just go to normal windows xp - i've already got that set up, but i don't know if anything has to be different in my script.
everything's in the default directory...can anyone pony me up a basic script that will work on my machine?
I guess you need a script compatible with scriptedlogon. Here are the lines you should put into a text file in order to do the job:
Code:
run "c:\program files\MediaPortal\Mediaportal.exe"
run async rundll32.exe shell32.dll,SHExitWindowsEx 4
the first line says that you want to run MediaPortal (located in the c:\program files\MediaPortal directory) and wait till it terminates
the second line executes some internal Windows functions that will shut down the OS. If Windows doesn't want to properly stop then try to replace the number 4 by 8 for instance.
Then log into your "vintage" account and open regedit, go to the HKEY_Current_User\Software\Microsoft\Windows NT\CurrentVersion\Winlogon key, create (or modify, if it already exists) a String value named "Shell" and put in the corresponding data field the following sentence:
replace c:\program files\MediaPortal by the actual path of each file and script_to_parse.txt by the name of the text file that contains the script written above
Here you are.
If you want to remove or modify this script at logon, just use your other account.
awesome, thanks man. glad to see my limited knowledge of skype let me get in contact with you =) i'll try this out tomorrow.
edit - just want to check on something, will this close explorer when i'm running mediaportal? or will it just shut down the system when i close MP itself? if there's an extra line i could add in that'd prevent explorer from hogging my resources during an MP session, that'd be fantastic.