- [dcraven] Fixed spelling error. Fixes #2580.
- Demoted some error messages from error to debug level.
This commit is contained in:
parent
161093faa9
commit
9814451e07
|
@ -1508,7 +1508,7 @@ Per type</property>
|
|||
<child>
|
||||
<widget class="GtkRadioButton" id="popup_new_message_radiobutton">
|
||||
<property name="visible">True</property>
|
||||
<property name="tooltip" translatable="yes">Gajim will automatically show new events by poping up the relative window</property>
|
||||
<property name="tooltip" translatable="yes">Gajim will automatically show new events by popping up the relevant window</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">_Pop it up</property>
|
||||
<property name="use_underline">True</property>
|
||||
|
|
|
@ -162,7 +162,7 @@ class PyOpenSSLWrapper(SSLWrapper):
|
|||
pass
|
||||
# log.debug("Recv: " + repr(e))
|
||||
except OpenSSL.SSL.SysCallError, e:
|
||||
log.error("Recv: Got OpenSSL.SSL.SysCallError: " + repr(e), exc_info=True)
|
||||
log.debug("Recv: Got OpenSSL.SSL.SysCallError: " + repr(e), exc_info=True)
|
||||
#traceback.print_exc()
|
||||
raise SSLWrapper.Error(self.sock or self.sslobj, e)
|
||||
except OpenSSL.SSL.Error, e:
|
||||
|
@ -170,7 +170,7 @@ class PyOpenSSLWrapper(SSLWrapper):
|
|||
# warn, but ignore this exception
|
||||
log.warning("Recv: OpenSSL: asn1enc: first num too large (ignored)")
|
||||
else:
|
||||
log.error("Recv: Caught OpenSSL.SSL.Error:", exc_info=True)
|
||||
log.debug("Recv: Caught OpenSSL.SSL.Error:", exc_info=True)
|
||||
#traceback.print_exc()
|
||||
#print "Current Stack:"
|
||||
#traceback.print_stack()
|
||||
|
|
Loading…
Reference in New Issue