16 lines
335 B
Python
16 lines
335 B
Python
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()
|