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

  • SEARCH
  • Home
  • 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 6539111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:49:06+00:00 2026-05-25T10:49:06+00:00

I have code like this: class Debug(object): … @property def ThreadAwareLogger(self): if not self.logger_instance_for_current_thread:

  • 0

I have code like this:

class Debug(object):
  ...

  @property
  def ThreadAwareLogger(self):
    if not self.logger_instance_for_current_thread:
      self.logger_instance_for_current_thread=self.cloneMainLogger()
    return self.logger_instance_for_current_thread

  def cloneMainLogger(self):
    return logger_instance_for_current_thread

class SomeOtherClass(object):

  def __init__(self):
    ...
    self.logger=debug.ThreadAwareLogger

  def otherMethod(self):
    ...
    self.logger.info("Message")

The problematic thing is the assignment self.logger=debug.ThreadAwareLogger. I’m not sure what is gonna be content of self.logger. I want it to be the whole getter and I want to have the getter executed everytime when I use self.logger in SomeOtherClass. But I’m affraid that in self.logger will be stored just the result of the getter logger_instance_for_current_thread. That means logger of the thread which was active at the time of assignment. This logger doesn’t have to be the right one when I call self.logger.info("Message").

How to get the getter ThreadAwareLogger executed everytime when I call self.logger.info("Message")?

Sidenote:
Why I actually need the shortcut self.logger?
When I decide to replace ThreadAwareLogger with AdvancedThreadAwareLogger I will change just one assignment instead of thousand calls of self.logger.info("Message"). Also is None of the business of the otherMethod to care about which logger will be used.

Edit:

The assignment of getter works as described in the answer by @unutbu. But assigning of the getter causes an issue I didn’t think before.

From the ThreadAwareLogger I actually call method cloneMainLogger. Now the call of someOtherClass.logger ends with exception: AttributeError: ‘SomeOtherClass’ object has no attribute ‘cloneMainLogger’.

So far I bypassed the issue with a small hack. The SomeOtherClass actually has a Debug instance. So I call debug.cloneMainLogger() instead of self.cloneMainLogger() inside of ThreadAwareLogger. The program now works, but I consider it really dirty.

Edit 2:

If I add line self.comptreeLogger=Debug.ThreaAwareLogger inside of a method; e.g. cloneMainLogger I’m getting AttributeError: ‘property’ object has no attribute ‘debug’.
Conclusion: I still don’t understand the solution.

  • 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-25T10:49:06+00:00Added an answer on May 25, 2026 at 10:49 am
    import logging
    import random
    
    class Debug(object):
        @property
        def ThreadAwareLogger(self):
            loggers = [logging.getLogger('abc'),logging.getLogger('def')]
            return self.anotherDebugMethod(loggers)
        def anotherDebugMethod(self,loggers):
            return random.choice(loggers)
    class SomeOtherClass(object):
        def __init__(self):
            self.debug=Debug()
        @property
        def logger(self):
            return self.debug.ThreadAwareLogger
        def otherMethod(self):
            self.logger.info('Message')
    
    if __name__=='__main__':
        logging.basicConfig(level=logging.DEBUG)    
        x=SomeOtherClass()
        for i in range(5):
            x.otherMethod()
    

    yields output like:

    INFO:def:Message
    INFO:abc:Message
    INFO:def:Message
    INFO:def:Message
    INFO:abc:Message
    

    Notice the changes in abc and def show that the Debug.ThreadAwareLogger function is getting called each time.

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

Sidebar

Related Questions

Suppose I have code like this: template<class T, T initial_t> class Bar { //
I have a data structure that represents C# code like this: class Namespace: string
I have code like this: var newMsg = new Msg { Var1 = var1,
I have code like this: template <typename T, typename U> struct MyStruct { T
I have code like this to move the player in my game left, right,
We currently have code like this: Dim xDoc = XDocument.Load(myXMLFilePath) The only way we
If I have code like this: public XALServiceConfiguration CreateInstance() { var config = ConfigurationManager.GetSection(ConfigurationSectionName)
I need to move backwards through an array, so I have code like this:
I'm using PHP5 to create XML files. I have code like this: $doc =
I have some code like this in a winforms app I was writing to

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.