Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python のログ形式に関する簡単な質問です。
logging.basicConfig(filename='test.log', format='%(levelname)s %(message)s', level=logging.DEBUG)
これにより、次のようなログメッセージが表示されます。
INFO Test
私が今欲しいのは、次のようにレベル名にブラケットを追加することです:
[INFO] Test
format 引数を変更するにはどうすればよいですか?
これでうまくいくはずです。
logging.basicConfig(filename='test.log', format='[%(levelname)s] %(message)s', level=logging.DEBUG)