0

I had the following logging configuration in code that I now want to set through a configuration file.

formatter = logging.Formatter('%s:'%getpass.getuser() + '%(asctime)s:%(levelname)s:%(module)s:%(lineno)d:%(message)s')

In the configuration file, I have

>     [formatter_frmtr]
>     format=getpass.getuser() + '%(asctime)s:%(levelname)s:%(module)s:%(lineno)d:%(message)s'

The function call getpass.getuser() is not getting called but is printed as is:

getpass.getuser() + '2011-06-01 11:56:53,924:ERROR:test:7:test'

How do I make get the username of the callee through the logging config file.

Thanks.

1 Answer 1

1

Use the techniques described in the logging documentation to add additional cobtext to your logging messages.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.