def _print(msg=""): if is_libnm_debug(): # we want to use the same logging mechanism as libnm's debug # logging with "LIBNM_CLIENT_DEBUG=trace,stdout". NM.utils_print(0, msg + "\n") return print(msg)
def log(msg): # use nm_utils_print(), so that the log messages are in synch with # LIBNM_CLIENT_DEBUG=trace messages. NM.utils_print(0, "[%015.10f] %s\n" % (time.monotonic() - start_time, msg))