Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Adding config file to package is not a big deal. But when I upload package to pypi and install it, it's not possible to read logging config:

logging.config.fileConfig('logging.conf')

basically my modules don't find it because file is not in current working directory anymore. How can I address that?

share|improve this question

1 Answer

up vote 2 down vote accepted

If logging.conf exists in the same directory as the file calling logging.config.fileConfig, then you could use:

import os
logconf_file = os.path.join(os.path.dirname(__file__), 'logging.conf')
logging.config.fileConfig(logconf_file)
share|improve this answer
oh, that was so obvious. thanks) – Pavel Paulau Feb 11 at 23:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.