summaryrefslogtreecommitdiff
path: root/tools/bug_tool/ClientCookie/_Debug.py
blob: 17f050e2527c53a9ce6d80d05fb82b97f52a2bb2 (plain)
1
2
3
4
5
6
7
8
9
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")