Log start_time when its > Now
This commit is contained in:
parent
f61bdcd118
commit
e55846e716
|
@ -69,7 +69,9 @@ Event::Event(
|
||||||
untimedEvent = true;
|
untimedEvent = true;
|
||||||
start_time = now;
|
start_time = now;
|
||||||
} else if ( start_time.tv_sec > now.tv_sec ) {
|
} else if ( start_time.tv_sec > now.tv_sec ) {
|
||||||
Error("StartTime in the future");
|
Error("StartTime in the future %d.%d > $d.%d",
|
||||||
|
start_time.tv_sec, start_time.tv_usec, now.tv_sec, now.tv_usec
|
||||||
|
);
|
||||||
start_time = now;
|
start_time = now;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue