Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have added some changes to an already existing Python project, but I am getting the following TypeErrors on running it. The program continues to run beyond this error and hence I am not able to figure out where the problem lies. The traceback stack would have been useful if it had given me more information on where the dunder init() from logging module is being invoked. If I had an idea on where the problem lies I could have added some breakpoints and used pdb to understand the issue better but I think that wouldn't be possible here. I should mention that this project has multiple private modules and classes. What is the best way to debug an error like this and to figure out what line within my code is causing the error?

Traceback (most recent call last):
  File "/usr/lib64/python2.4/logging/__init__.py", line 731, in emit
    msg = self.format(record)
  File "/usr/lib64/python2.4/logging/__init__.py", line 617, in format
    return fmt.format(record)
  File "/usr/lib64/python2.4/logging/__init__.py", line 405, in format
    record.message = record.getMessage()
  File "/usr/lib64/python2.4/logging/__init__.py", line 276, in getMessage
    msg = msg % self.args
TypeError: not all arguments converted during string formatting
share|improve this question
So which part of the traceback doesn't tell you where the problem lies, you can see the entire call stack? Why don't you introduce brake points on lines 731, 617, 405 and 276 - or perhaps just start with 276? – Matti Lyra Jan 31 at 21:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.