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