Set the domain for log messages so we get "kiplot..." and not "kilog...."

This commit is contained in:
Salvador E. Tropea 2020-05-26 14:33:34 -03:00
parent 5883b1a616
commit 3b7bfe40f7
1 changed files with 3 additions and 1 deletions

View File

@ -11,9 +11,11 @@ import os
import sys
from glob import glob
# Import log first to set the domain
from . import log
log.set_domain('kiplot')
from . import kiplot
from . import config_reader
from . import log
from . import misc
from .__version__ import __version__