Commit b12e02da authored by Grégory Wisniewski's avatar Grégory Wisniewski

Update neoctl application according to previous commit.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1033 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent db6fcb9b
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
from optparse import OptionParser from optparse import OptionParser
from neo.neoctl.app import Application from neo.neoctl.app import Application
from neo import buildFormatString from neo import setupLog
import logging
parser = OptionParser() parser = OptionParser()
parser.add_option('-v', '--verbose', action = 'store_true', parser.add_option('-v', '--verbose', action = 'store_true',
help = 'print verbose messages') help = 'print verbose messages')
...@@ -31,18 +31,13 @@ parser.add_option('-i', '--ip', help = 'specify the ip of admin node') ...@@ -31,18 +31,13 @@ parser.add_option('-i', '--ip', help = 'specify the ip of admin node')
parser.add_option('--handler', help = 'specify the connection handler') parser.add_option('--handler', help = 'specify the connection handler')
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
port = options.port or 5555 port = options.port or 5555
ip = options.ip or '127.0.0.1' ip = options.ip or '127.0.0.1'
handler = options.handler or "SocketConnector" handler = options.handler or "SocketConnector"
format = buildFormatString('neoctl') setupLog('NEOCTL', options.verbose)
if options.verbose:
logging.basicConfig(level=logging.DEBUG, format=format)
else:
logging.basicConfig(level=logging.INFO, format=format)
from neo.neoctl.app import Application
app = Application(ip, port, handler) app = Application(ip, port, handler)
print app.execute(args) print app.execute(args)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment