Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6210227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:07:22+00:00 2026-05-24T06:07:22+00:00

What is the simplest method for temporarily changing the logging message format, in Python

  • 0

What is the simplest method for temporarily changing the logging message format, in Python (through the logging module)?

The goal is to have some standard message format, while being able to temporarily add information about some file being read (like its name); the message format should revert to its default when the file is not being read anymore. The program that produces the messages is not aware of what file is being read, so it would be nice if its message automatically included the relevant file name (the error message would be: “ERROR while reading file ***: …” instead of “ERROR: …”).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T06:07:23+00:00Added an answer on May 24, 2026 at 6:07 am

    Here is a simple solution, that can be deduced from Vinay Sajip‘s own HOWTO; it basically updates the logging formatter with setFormatter():

    import logging
    
    logger = logging.getLogger()  # Logger
    logger_handler = logging.StreamHandler()  # Handler for the logger
    logger.addHandler(logger_handler)
    
    # First, generic formatter:
    logger_handler.setFormatter(logging.Formatter('%(message)s'))
    logger.error('error message')  # Test
    
    # New formatter for the handler:
    logger_handler.setFormatter(logging.Formatter('PROCESSING FILE xxx - %(message)s'))
    logger.error('error message')  # Test
    

    This correctly produces:

    error message
    PROCESSING FILE xxx - error message
    

    (where xxx can be set dynamically to the file being processed, as asked for in the question).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to know the simplest method to pass variable from custom module to
I want to know the simplest method for using vbo's in OpenGL... I have
I have been trying to find the simplest method (in XAML) to bind a
I'm currently logging via the simplest of methods within my servlet using Tomcat. I
The simplest way to deal with python package installations, so far, to me, has
What's the simplest method to convert YAML to dot-separated strings in Ruby? So this:
What is the very, very simplest method of getting the RSS (or JSONP) feed
I am having issues embedding SVG into a webpage. I have found the simplest
What is the simplest method to remove the last character from the end of
I have webRole with some data stored in Session. The data is some tens

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.