Move log_support import earlier
Since log_support configures the logging class, it needs to be early in the initialization process.
This commit is contained in:
parent
52010ade41
commit
5aa10031bc
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
from lbrynet.core import log_support
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import logging.handlers
|
import logging.handlers
|
||||||
import webbrowser
|
import webbrowser
|
||||||
|
@ -7,7 +9,6 @@ from jsonrpc.proxy import JSONRPCProxy
|
||||||
|
|
||||||
from lbrynet import analytics
|
from lbrynet import analytics
|
||||||
from lbrynet import conf
|
from lbrynet import conf
|
||||||
from lbrynet.core import log_support
|
|
||||||
from lbrynet.core import utils
|
from lbrynet.core import utils
|
||||||
from lbrynet.lbrynet_daemon.DaemonServer import DaemonServer
|
from lbrynet.lbrynet_daemon.DaemonServer import DaemonServer
|
||||||
from lbrynet import conf
|
from lbrynet import conf
|
||||||
|
|
Loading…
Add table
Reference in a new issue