Remove superfluous debug output

This commit is contained in:
Tony Garnock-Jones 2018-11-02 22:49:45 +00:00
parent 88b0b1f8e8
commit df84a102df
1 changed files with 0 additions and 3 deletions

View File

@ -51,9 +51,7 @@ spawn named 'driver-timer/TimeLaterThan' {
let finish = Dataspace.backgroundTask();
on start {
let delta = deadlineMS - (+(new Date()));
console.log('Observation of TimeLaterThan', deadlineMS, delta);
handle = setTimeout(Dataspace.wrapExternal(() => {
console.log('Firing TimeLaterThan', deadlineMS);
handle = null;
finish();
finish = null;
@ -63,7 +61,6 @@ spawn named 'driver-timer/TimeLaterThan' {
}), delta);
}
on stop {
console.log('Retraction of observation of TimeLaterThan', deadlineMS);
if (handle) {
clearTimeout(handle);
handle = null;