Revision: 3149
Author: seba.wagner
Date: Tue Mar 16 14:54:32 2010
Log: Update Issue 1172
retry with this revision, I had no problems anymore
http://code.google.com/p/openmeetings/source/detail?r=3149
Modified:
/trunk/singlewebapp/src/app/org/openmeetings/app/data/conference/Invitationmanagement.java
=======================================
---
/trunk/singlewebapp/src/app/org/openmeetings/app/data/conference/Invitationmanagement.java
Fri Feb 19 07:06:05 2010
+++
/trunk/singlewebapp/src/app/org/openmeetings/app/data/conference/Invitationmanagement.java
Tue Mar 16 14:54:32 2010
@@ -723,7 +723,7 @@
return inv;
}catch(Exception e){
- log.error("getInvitationsbyId : " + e.getMessage());
+ log.error("getInvitationsbyId : " , e);
return null;
}
}
@@ -792,7 +792,7 @@
}
} catch (HibernateException ex) {
- log.error("[getInvitationByHashCode] "+ex);
+ log.error("[getInvitationByHashCode] ",ex);
} catch (Exception err) {
log.error("[getInvitationByHashCode]",err);
}
@@ -813,9 +813,9 @@
tx.commit();
HibernateUtil.closeSession(idf);
} catch (HibernateException ex) {
- log.error("[selectMaxFromUsers] "+ex);
+ log.error("[selectMaxFromUsers] ",ex);
} catch (Exception ex2) {
- log.error("[selectMaxFromUsers] "+ex2);
+ log.error("[selectMaxFromUsers] ",ex2);
}
}
/**
@@ -827,6 +827,7 @@
public Object checkInvitationPass(String hashCode, String pass){
try {
Object obj = this.getInvitationByHashCode(hashCode,
false);
+ log.debug("checkInvitationPass - obj: "+obj);
if (obj instanceof Invitations){
Invitations invitation = (Invitations) obj;
if
(ManageCryptStyle.getInstance().getInstanceOfCrypt().verifyPassword(pass,
invitation.getInvitationpass())){
@@ -838,7 +839,7 @@
return obj;
}
} catch (Exception ex2) {
- log.error("[checkInvitationPass] "+ex2);
+ log.error("[checkInvitationPass] ",ex2);
}
return new Long(-1);
}
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.