1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix no self pointer out of class.

This commit is contained in:
soarpenguin 2015-09-26 14:09:56 +08:00
parent b757798f3e
commit 2caa52a981

View file

@ -46,7 +46,7 @@ debug_lock = Lock()
if C.DEFAULT_LOG_PATH:
path = C.DEFAULT_LOG_PATH
if (os.path.exists(path) and not os.access(path, os.W_OK)) and not os.access(os.path.dirname(path), os.W_OK):
self._display.warning("log file at %s is not writeable, aborting\n" % path)
print("[WARNING]: log file at %s is not writeable, aborting\n" % path, file=sys.stderr)
logging.basicConfig(filename=path, level=logging.DEBUG, format='%(asctime)s %(name)s %(message)s')
mypid = str(os.getpid())