Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Merge pull request #672 from zware/patch-1
Browse files Browse the repository at this point in the history
Relegate missing rdkafka traceback to DEBUG logs
  • Loading branch information
emmettbutler authored Mar 29, 2017
2 parents 402c5b1 + abf56ca commit ee33c5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pykafka/topic.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
log.info("Successfully loaded pykafka.rdkafka extension.")
except ImportError:
rdkafka = False
log.info("Could not load pykafka.rdkafka extension.", exc_info=True)
log.info("Could not load pykafka.rdkafka extension.")
log.debug("Traceback:", exc_info=True)


class Topic(object):
Expand Down

0 comments on commit ee33c5b

Please sign in to comment.