From 2007672d538f80f3fd1a3d226941695c62ee83cc Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@uni.lu> Date: Fri, 19 Oct 2018 11:27:10 +0200 Subject: [PATCH] changed log to debug instead of warn --- smash/web/officeAvailability.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smash/web/officeAvailability.py b/smash/web/officeAvailability.py index e76fa882..1ee73256 100644 --- a/smash/web/officeAvailability.py +++ b/smash/web/officeAvailability.py @@ -170,7 +170,7 @@ class OfficeAvailability(object): fig = plt.figure() #create new figure. This should ensure thread safe method ax=fig.gca() #get current axes matplotlib.rcParams['hatch.linewidth'] = 1 - logger.warn('business_hours: {} {}'.format(self.office_start, self.office_end)) + logger.debug('business_hours: {} {}'.format(self.office_start, self.office_end)) business_hours = self.business_hours = pd.Series(index=self.range, data=0) mask = business_hours.between_time(self.office_start, self.office_end).index business_hours[mask] = 1 -- GitLab