logging.debug
を使用して変数を出力しようとしましたが、以下のエラーが発生しました。文字列フォーマット中にlogging.debugエラーが発生しました
logging.debug('ATTEMPTS:{0}',attempts)
エラー: - あなたは間違ってformatting the stringだ
Traceback (most recent call last):
File "C:\Python27\lib\logging\__init__.py", line 846, in emit
msg = self.format(record)
File "C:\Python27\lib\logging\__init__.py", line 723, in format
return fmt.format(record)
File "C:\Python27\lib\logging\__init__.py", line 464, in format
record.message = record.getMessage()
File "C:\Python27\lib\logging\__init__.py", line 328, in getMessage
msg = msg % self.args
TypeError: not all arguments converted during string formatting
[TypeError:文字列フォーマット中にすべての引数が変換されないpython](http://stackoverflow.com/questions/18053500/typeerror-not-all-arguments-converted-during-string-formatting-python) – antiguru