Change logging domains

This commit is contained in:
Philipp Hörist
2019-03-10 10:27:07 +01:00
parent 237f50cfb5
commit 6436c1cafa
23 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ from gajim.common import app
KeyringItem = namedtuple('KeyringItem',
'type keyid userid fingerprint')
log = logging.getLogger('gajim.plugin_system.openpgp.pgpme')
log = logging.getLogger('gajim.p.openpgp.pgpme')
class PGPContext():
+1 -1
View File
@@ -24,7 +24,7 @@ from gajim.common import app
from openpgp.modules.util import DecryptionFailed
log = logging.getLogger('gajim.plugin_system.openpgp.pygnupg')
log = logging.getLogger('gajim.p.openpgp.pygnupg')
KeyringItem = namedtuple('KeyringItem', 'jid keyid fingerprint')
+1 -1
View File
@@ -20,7 +20,7 @@ from collections import namedtuple
from nbxmpp import JID
log = logging.getLogger('gajim.plugin_system.openpgp.sql')
log = logging.getLogger('gajim.p.openpgp.sql')
TABLE_LAYOUT = '''
CREATE TABLE contacts (
+1 -1
View File
@@ -27,7 +27,7 @@ from gajim.plugins.plugins_i18n import _
from openpgp.modules.util import Trust
log = logging.getLogger('gajim.plugin_system.openpgp.keydialog')
log = logging.getLogger('gajim.p.openpgp.keydialog')
TRUST_DATA = {
Trust.NOT_TRUSTED: ('dialog-error-symbolic',
+1 -1
View File
@@ -24,7 +24,7 @@ from gi.repository import GLib
from gajim.common import app
from gajim.plugins.plugins_i18n import _
log = logging.getLogger('gajim.plugin_system.openpgp.wizard')
log = logging.getLogger('gajim.p.openpgp.wizard')
class Page(IntEnum):
+1 -1
View File
@@ -18,7 +18,7 @@ import logging
from openpgp.modules.util import Trust
log = logging.getLogger('gajim.plugin_system.openpgp.store')
log = logging.getLogger('gajim.p.openpgp.store')
class KeyData:
+1 -1
View File
@@ -46,7 +46,7 @@ from openpgp.backend.sql import Storage
from openpgp.backend.pygpg import PGPContext
log = logging.getLogger('gajim.plugin_system.openpgp')
log = logging.getLogger('gajim.p.openpgp')
# Module name
+1 -1
View File
@@ -42,7 +42,7 @@ except ImportError as e:
else:
ERROR_MSG = None
log = logging.getLogger('gajim.plugin_system.openpgp')
log = logging.getLogger('gajim.p.openpgp')
class OpenPGPPlugin(GajimPlugin):