summaryrefslogtreecommitdiffstats
path: root/py3status/__init__.py
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2015-02-11 14:53:15 +0100
committerUltrabug <ultrabug@gentoo.org>2015-02-11 14:53:15 +0100
commit2b9383221ebfc1c7c74fad118db332fbb17fcf98 (patch)
tree83e25a5c86fcbe4c25a100dee09ec60cbc2a140c /py3status/__init__.py
parent6f04e87bc1ce5bd071b015e15d52c81778758195 (diff)
remove legacy module ordering spammy debug logs
Diffstat (limited to 'py3status/__init__.py')
-rwxr-xr-xpy3status/__init__.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/py3status/__init__.py b/py3status/__init__.py
index b2cf758..c90463f 100755
--- a/py3status/__init__.py
+++ b/py3status/__init__.py
@@ -1409,13 +1409,6 @@ class Py3statusWrapper():
)
]
- # debug the ordering matrix
- if self.config['debug']:
- syslog(
- LOG_INFO,
- 'ordering matrix {}'.format(list(range(len(m_list))))
- )
-
# run through modules/methods output and insert them in reverse order
debug_msg = ''
for m in reversed(list(self.modules.values())):
@@ -1441,13 +1434,6 @@ class Py3statusWrapper():
m_list.index(last_output)
)
- # debug the user modules ordering
- if self.config['debug']:
- syslog(
- LOG_INFO,
- 'ordering user modules positions {}'.format(debug_msg.strip())
- )
-
# append i3status json list to the modules' list in empty slots
debug_msg = ''
for i3s_json in json_list:
@@ -1466,15 +1452,6 @@ class Py3statusWrapper():
m_list.index(i3s_json)
)
- # debug i3status modules ordering
- if self.config['debug']:
- syslog(
- LOG_INFO,
- 'ordering i3status modules positions {}'.format(
- debug_msg.strip()
- )
- )
-
# cleanup and return output list, we also remove empty outputs
m_list = list(filter(lambda a: a != '' and a['full_text'], m_list))