mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Fix logging
This commit is contained in:
parent
e687e9e7df
commit
4f7589ca7f
1 changed files with 3 additions and 1 deletions
|
|
@ -2,6 +2,8 @@
|
||||||
'''
|
'''
|
||||||
General-purpose fixtures for vdirsyncer's testsuite.
|
General-purpose fixtures for vdirsyncer's testsuite.
|
||||||
'''
|
'''
|
||||||
|
import logging
|
||||||
|
|
||||||
import click_log
|
import click_log
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
@ -9,7 +11,7 @@ import pytest
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def setup_logging():
|
def setup_logging():
|
||||||
click_log.basic_config('vdirsyncer')
|
click_log.basic_config('vdirsyncer').setLevel(logging.DEBUG)
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue