cubicweb/cwctl.py
changeset 12749 ff63319a1730
parent 12743 a74e77469540
child 12754 22ece66dcd47
equal deleted inserted replaced
12746:5c432a7fc442 12749:ff63319a1730
    45 from cubicweb.server import set_debug
    45 from cubicweb.server import set_debug
    46 from cubicweb.toolsutils import Command, rm, create_dir, underline_title
    46 from cubicweb.toolsutils import Command, rm, create_dir, underline_title
    47 from cubicweb.__pkginfo__ import version as cw_version
    47 from cubicweb.__pkginfo__ import version as cw_version
    48 
    48 
    49 LOG_LEVELS = ('debug', 'info', 'warning', 'error')
    49 LOG_LEVELS = ('debug', 'info', 'warning', 'error')
    50 DBG_FLAGS = ('RQL', 'SQL', 'REPO', 'HOOKS', 'OPS', 'SEC', 'MORE')
    50 DBG_FLAGS = ('RQL', 'SQL', 'REPO', 'HOOKS', 'OPS', 'SEC', 'MORE', 'ALL')
    51 
    51 
    52 # don't check duplicated commands, it occurs when reloading site_cubicweb
    52 # don't check duplicated commands, it occurs when reloading site_cubicweb
    53 CWCTL = CommandLine('cubicweb-ctl', 'The CubicWeb swiss-knife.',
    53 CWCTL = CommandLine('cubicweb-ctl', 'The CubicWeb swiss-knife.',
    54                     version=cw_version, check_duplicated_command=False)
    54                     version=cw_version, check_duplicated_command=False)
    55 
    55