Skip to content

Commit

Permalink
Remove too verbose logger statements
Browse files Browse the repository at this point in the history
Related to #278.

Signed-off-by: JoeLametta <[email protected]>
  • Loading branch information
JoeLametta committed Jul 7, 2019
1 parent 0d69258 commit 57d386e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions whipper/extern/task/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,6 @@ def _startWrap(self, task):
def schedule(self, task, delta, callable_task, *args, **kwargs):
def c():
try:
self.debug('schedule: calling %r(*args=%r, **kwargs=%r)',
callable_task, args, kwargs)
callable_task(*args, **kwargs)
return False
except Exception as e:
Expand All @@ -526,8 +524,6 @@ def c():
task.setException(e)
self.stopped(task)
raise
self.debug('schedule: scheduling %r(*args=%r, **kwargs=%r)',
callable_task, args, kwargs)

GLib.timeout_add(int(delta * 1000L), c)

Expand Down

0 comments on commit 57d386e

Please sign in to comment.