ia64/xen-unstable
changeset 12105:52f449c9dcc5
[XEND] Remove annoying debugging messages
Signed-off-by: Alastair Tse <atse@xensource.com>
Signed-off-by: Alastair Tse <atse@xensource.com>
author | Alastair Tse <atse@xensource.com> |
---|---|
date | Fri Oct 06 11:56:36 2006 +0100 (2006-10-06) |
parents | d147be77861d |
children | 858218d94516 |
files | tools/python/xen/xend/XendAPI.py tools/python/xen/xend/XendAuthSessions.py |
line diff
1.1 --- a/tools/python/xen/xend/XendAPI.py Fri Oct 06 11:48:21 2006 +0100 1.2 +++ b/tools/python/xen/xend/XendAPI.py Fri Oct 06 11:56:36 2006 +0100 1.3 @@ -291,7 +291,6 @@ class XendAPI: 1.4 def session_login_with_password(self, username, password): 1.5 try: 1.6 session = auth_manager().login_with_password(username, password) 1.7 - log.info("User %s logged in.", username) 1.8 return xen_api_success(session) 1.9 except XendError, e: 1.10 return xen_api_error(XEND_ERROR_AUTHENTICATION_FAILED)
2.1 --- a/tools/python/xen/xend/XendAuthSessions.py Fri Oct 06 11:48:21 2006 +0100 2.2 +++ b/tools/python/xen/xend/XendAuthSessions.py Fri Oct 06 11:56:36 2006 +0100 2.3 @@ -44,7 +44,6 @@ class XendAuthSessions: 2.4 del self.sessions[session] 2.5 2.6 def is_session_valid(self, session): 2.7 - log.debug('isSessionValid: %s' % session) 2.8 if type(session) == type(str()): 2.9 return (session in self.sessions) 2.10 return False