summaryrefslogtreecommitdiff
path: root/tests/functional-tests
diff options
context:
space:
mode:
authorSam Thursfield <sam@afuera.me.uk>2020-04-20 01:17:24 +0200
committerSam Thursfield <sam@afuera.me.uk>2020-04-20 19:29:38 +0200
commit5aac1111209caf33fa82acc0c206b3a2165cb76e (patch)
treee33969dca35ebc3b2e82aec90368c81f67f1730b /tests/functional-tests
parentc3a49219c57b605dcb7b7e6bbf889f9b2a4e1bab (diff)
downloadtracker-5aac1111209caf33fa82acc0c206b3a2165cb76e.tar.gz
Remove TRACKER_VERBOSITY and tracker-log module
Users should now use G_MESSAGES_DEBUG=Tracker to see debug messages on the console. The TRACKER_VERBOSITY only worked if tracker_log_init() had been called, which can't be done when libtracker-sparql is being used from an application outside of Tracker.
Diffstat (limited to 'tests/functional-tests')
-rw-r--r--tests/functional-tests/fixtures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional-tests/fixtures.py b/tests/functional-tests/fixtures.py
index 7e715c3f0..b42d742c4 100644
--- a/tests/functional-tests/fixtures.py
+++ b/tests/functional-tests/fixtures.py
@@ -53,7 +53,7 @@ def tracker_test_main():
else:
# Output some messages from D-Bus daemon to stderr by default. In practice,
# only errors and warnings should be output here unless the environment
- # contains G_MESSAGES_DEBUG= and/or TRACKER_VERBOSITY=1 or more.
+ # contains G_MESSAGES_DEBUG=.
handler_stderr = logging.StreamHandler(stream=sys.stderr)
handler_stderr.addFilter(logging.Filter('trackertestutils.dbusdaemon.stderr'))
handler_stdout = logging.StreamHandler(stream=sys.stderr)