summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-03-10 16:15:34 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-03-10 16:15:34 +0100
commit88d79a2c588489f001cc50c9c1c5d6b8d01e9658 (patch)
tree3f476a9b97ec84a5bec2bff24df8154032df953d
parent475eebc0bcfeed504f9ce57e7121fd51dfbd3207 (diff)
downloadjoblib-88d79a2c588489f001cc50c9c1c5d6b8d01e9658.tar.gz
joblib-88d79a2c588489f001cc50c9c1c5d6b8d01e9658.zip
use logging, not print
-rw-r--r--joblib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/joblib.py b/joblib.py
index 4007b2f..7575042 100644
--- a/joblib.py
+++ b/joblib.py
@@ -108,7 +108,7 @@ class JobQueue(object):
return jobs
except asyncpg.exceptions.SerializationError:
# job is being picked up by another worker, try again
- print("serialization error")
+ logging.debug("serialization error, retrying")
pass
async def status(self, jobid):