d09f6b3016
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
10 lines
204 B
Python
10 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")
|