LSRT-16: improved logging. do log rad queries as they contain lots of...
LSRT-16: improved logging. do log rad queries as they contain lots of information. Made distinction in the way a BasicScheduler and other schedulers handle a ScheduleException (rollback vs commit).
raiseScheduleException("DwellScheduler radb_id=%s Cannot advance because new_starttime=%s <= self.starttime=%s",self.task_id,new_starttime,self.starttime)
ifnew_starttime>self.max_starttime:
logger.debug("DwellScheduler: Dwelled until the end. Earliest start time is %s but cannot go beyond %s.",new_starttime,self.max_starttime)
logger.info("DwellScheduler: radb_id=%s Dwelled until the end. Earliest start time is %s but cannot go beyond %s.",self.task_id,new_starttime,self.max_starttime)