From d70a71a12e72ebb0eca21a645dc49f5b15b82277 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 21 Sep 2013 22:17:01 +0200 Subject: [PATCH] Make nonblock debug message --- couchpotato/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/api.py b/couchpotato/api.py index b6135583..6cb227da 100644 --- a/couchpotato/api.py +++ b/couchpotato/api.py @@ -49,7 +49,7 @@ class NonBlockHandler(RequestHandler): try: self.finish(response) except: - log.error('Failed doing nonblock request: %s', (traceback.format_exc())) + log.debug('Failed doing nonblock request, probably already closed: %s', (traceback.format_exc())) try: self.finish({'success': False, 'error': 'Failed returning results'}) except: pass