Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

Logging Variable Data

In most cases, you would want to include dynamic information from your application in the logs. You have seen that the logging methods take a string as an argument, and it might seem natural to format a string with variable data in a separate line and pass it to the log method. But this can actually be done directly by using a format string for the message and appending the variable data as arguments. Here’s an example:

Python
import logging

name = 'John'

logging.error('%s raised an error', name)

Here’s what you’ll get:

Shell
ERROR:root:John raised an error

Rob Black on July 29, 2019

The name argument to the log message in this example (i.e. John) should not be confused with the name string in the format argument of the basicConfig call in the previous example (i.e. root).

Rob Black on July 29, 2019

Hi all. I should have submitted my previous comment via the Feedback button instead of posting here. Sorry for the noise.

Become a Member to join the conversation.