~ken-pepple/nova/lp718360

« back to all changes in this revision

Viewing changes to nova/rpc.py

  • Committer: Ken Pepple
  • Date: 2011-02-16 05:16:29 UTC
  • Revision ID: ken.pepple@gmail.com-20110216051629-t03t0pkn6cag600l
initialized FLAGS with sys.argv for LOG.debug to work

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
from nova import utils
40
40
 
41
41
 
42
 
logging.basicConfig()
 
42
FLAGS = flags.FLAGS
 
43
FLAGS(sys.argv)
43
44
LOG = logging.getLogger('nova.rpc')
44
45
 
45
46