Advertisement
Guest User

Untitled

a guest
Jul 24th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1.  
  2. 2012-07-24 12:14:51 DEBUG nova.service [-] publish_errors : False from (pid=5256) wait /usr/lib/python2.7/dist-packages/nova/service.py:411
  3. 2012-07-24 12:24:04 TRACE nova.rpc.amqp self._set_instance_error_state(context, instance_uuid)
  4.  
  5.  
  6. def wait():
  7. LOG.debug(_('Full set of FLAGS:'))
  8. for flag in FLAGS:
  9. flag_get = FLAGS.get(flag, None)
  10. # hide flag contents from log if contains a password
  11. # should use secret flag when switch over to openstack-common
  12. if ("_password" in flag or "_key" in flag or
  13. (flag == "sql_connection" and "mysql:" in flag_get)):
  14. LOG.debug(_('%(flag)s : FLAG SET ') % locals())
  15. else:
  16. LOG.debug('%(flag)s : %(flag_get)s' % locals())
  17.  
  18. ^ this is serice.py line 411 on my box
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement