diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-10 16:15:34 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-10 16:15:34 +0100 |
| commit | 88d79a2c588489f001cc50c9c1c5d6b8d01e9658 (patch) | |
| tree | 3f476a9b97ec84a5bec2bff24df8154032df953d | |
| parent | 475eebc0bcfeed504f9ce57e7121fd51dfbd3207 (diff) | |
| download | joblib-88d79a2c588489f001cc50c9c1c5d6b8d01e9658.tar.gz joblib-88d79a2c588489f001cc50c9c1c5d6b8d01e9658.zip | |
use logging, not print
| -rw-r--r-- | joblib.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |
