[FIX] Added TEST logging level to the command line options.

bzr revid: jth@openerp.com-20100308225158-wkbgit6epxt3ggga
This commit is contained in:
Julien Thewys 2010-03-08 23:51:58 +01:00
parent 3925b8388f
commit 231336c878
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class configmanager(object):
hasSSL = check_ssl()
self._LOGLEVELS = dict([(getattr(netsvc, 'LOG_%s' % x), getattr(logging, x))
for x in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG', 'DEBUG_RPC', 'NOTSET')])
for x in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'TEST', 'DEBUG', 'DEBUG_RPC', 'NOTSET')])
version = "%s %s" % (release.description, release.version)
parser = optparse.OptionParser(version=version)