mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
18 lines
424 B
Python
18 lines
424 B
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import time
|
|
import sys
|
|
|
|
from multiprocessing import Lock
|
|
|
|
from ansible import constants as C
|
|
|
|
global_debug_lock = Lock()
|
|
def debug(msg):
|
|
if C.DEFAULT_DEBUG:
|
|
global_debug_lock.acquire()
|
|
print("%6d %0.5f: %s" % (os.getpid(), time.time(), msg))
|
|
sys.stdout.flush()
|
|
global_debug_lock.release()
|