Skip to content

Commit

Permalink
Fix log encoding problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mohierf committed Mar 17, 2017
1 parent a64a594 commit 579e2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alignak/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ def scatter_master_notifications(self):
if act.is_a != 'notification':
continue
if act.status == 'scheduled' and act.is_launchable(now):
logger.debug("Scheduler got a master notification: %s", str(act))
logger.debug("Scheduler got a master notification: %s", repr(act))
if not act.contact:
logger.debug("No contact for this notification")
# This is a "master" notification created by create_notifications.
Expand Down

0 comments on commit 579e2db

Please sign in to comment.