def __str__()

in eventdata/schedulers/utilization_scheduler.py [0:0]


    def __str__(self):
        if self.recording:
            return "Utilization scheduler in recording mode."
        else:
            return "Utilization scheduler with target utilization of {:.2f}%.".format(self.target_utilization * 100)