mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
9 lines
204 B
Python
9 lines
204 B
Python
import ClientCookie
|
|
|
|
def debug(text):
|
|
if ClientCookie.CLIENTCOOKIE_DEBUG: _debug(text)
|
|
|
|
def _debug(text, *args):
|
|
if args:
|
|
text = text % args
|
|
ClientCookie.DEBUG_STREAM.write(text+"\n")
|