Skip to content
Snippets Groups Projects
Commit c9f23a34 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Settings: Remove verbose setting

get_debug_mode() does a better job
parent 72b6dea5
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,6 @@ class Config:
__options = ({
# name: [ type, default_value, help_string, restart ]
'verbose': [opt_bool, False, '', True],
'autopopup': [opt_bool, False],
'autopopupaway': [opt_bool, False],
'sounddnd': [opt_bool, False, _('Play sound even when being busy.')],
......
......@@ -13,7 +13,6 @@ class _ACCOUNT_DEFAULT:
# pylint: disable=line-too-long
APP_SETTINGS = {
'verbose': False,
'autopopup': False,
'show_notifications': True,
'autopopupaway': False,
......
......@@ -73,7 +73,6 @@
from gajim.common import socks5
from gajim.common import helpers
from gajim.common import passwords
from gajim.common import logging_helpers
from gajim.common.helpers import ask_for_status_message
from gajim.common.helpers import get_group_chat_nick
from gajim.common.structs import MUCData
......@@ -2125,9 +2124,6 @@ def __init__(self):
app.load_css_config()
app.storage.archive.reset_shown_unread_messages()
# override logging settings from config (don't take care of '-q' option)
if app.settings.get('verbose'):
logging_helpers.set_verbose()
for account in app.settings.get_accounts():
if app.settings.get_account_setting(account, 'is_zeroconf'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment