Logging updates
Came over BM (from "general" channel), I slightly modified it.
This commit is contained in:
parent
b7ad34cf15
commit
9338772b1e
|
@ -1,3 +1,4 @@
|
||||||
|
from debug import logger
|
||||||
withMessagingMenu = False
|
withMessagingMenu = False
|
||||||
try:
|
try:
|
||||||
from gi.repository import MessagingMenu
|
from gi.repository import MessagingMenu
|
||||||
|
@ -12,14 +13,14 @@ try:
|
||||||
from PyQt4.QtGui import *
|
from PyQt4.QtGui import *
|
||||||
|
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
logger.error( 'PyBitmessage requires PyQt unless you want to run it as a daemon and interact with it using the API. You can download it from http://www.riverbankcomputing.com/software/pyqt/download or by searching Google for \'PyQt Download\' (without quotes).')
|
logmsg = 'PyBitmessage requires PyQt unless you want to run it as a daemon and interact with it using the API. You can download it from http://www.riverbankcomputing.com/software/pyqt/download or by searching Google for \'PyQt Download\' (without quotes).'
|
||||||
logger.error('Error message: ' + str(err))
|
logger.critical(logmsg, exc_info=True)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
_encoding = QtGui.QApplication.UnicodeUTF8
|
_encoding = QtGui.QApplication.UnicodeUTF8
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
logger.error('QtGui.QApplication.UnicodeUTF8 error: ' + str(err))
|
logger.exception('QtGui.QApplication.UnicodeUTF8 error', exc_info=True)
|
||||||
|
|
||||||
from addresses import *
|
from addresses import *
|
||||||
import shared
|
import shared
|
||||||
|
@ -51,7 +52,6 @@ import pickle
|
||||||
import platform
|
import platform
|
||||||
import textwrap
|
import textwrap
|
||||||
import debug
|
import debug
|
||||||
from debug import logger
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import datetime
|
import datetime
|
||||||
from helper_sql import *
|
from helper_sql import *
|
||||||
|
@ -3243,7 +3243,7 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
f.write(message)
|
f.write(message)
|
||||||
f.close()
|
f.close()
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
sys.stderr.write('Write error: '+ e)
|
logger.exception('Message not saved', exc_info=True)
|
||||||
self.statusBar().showMessage(_translate("MainWindow", "Write error."))
|
self.statusBar().showMessage(_translate("MainWindow", "Write error."))
|
||||||
|
|
||||||
# Send item on the Sent tab to trash
|
# Send item on the Sent tab to trash
|
||||||
|
|
Loading…
Reference in New Issue
Block a user