Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gajim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
197
Issues
197
List
Boards
Labels
Service Desk
Milestones
Merge Requests
20
Merge Requests
20
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gajim
gajim
Commits
35f6e521
Commit
35f6e521
authored
Jan 05, 2021
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Settings: Remove verbose setting
get_debug_mode() does a better job
parent
54ab434d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
6 deletions
+0
-6
gajim/common/config.py
gajim/common/config.py
+0
-1
gajim/common/setting_values.py
gajim/common/setting_values.py
+0
-1
gajim/gui_interface.py
gajim/gui_interface.py
+0
-4
No files found.
gajim/common/config.py
View file @
35f6e521
...
...
@@ -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.'
)],
...
...
gajim/common/setting_values.py
View file @
35f6e521
...
...
@@ -13,7 +13,6 @@ class _ACCOUNT_DEFAULT:
# pylint: disable=line-too-long
APP_SETTINGS
=
{
'verbose'
:
False
,
'autopopup'
:
False
,
'show_notifications'
:
True
,
'autopopupaway'
:
False
,
...
...
gajim/gui_interface.py
View file @
35f6e521
...
...
@@ -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'
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment