comment spacing and removing setLevel

This commit is contained in:
Jack 2016-07-27 15:02:19 -04:00
parent 3a425fc47d
commit 7f5560de6d
2 changed files with 3 additions and 6 deletions

View file

@ -8,7 +8,6 @@ from lbrynet.conf import CURRENCIES
import logging
log = logging.getLogger(__name__)
log.setLevel(logging.INFO)
BITTREX_FEE = 0.0025
@ -22,7 +21,6 @@ METADATA_REVISIONS = {'0.0.1': {'required': BASE_METADATA_FIELDS, 'optional': OP
METADATA_REVISIONS['0.0.2'] = {'required': ['nsfw', 'ver'], 'optional': ['license_url']}
CURRENT_METADATA_VERSION = '0.0.2'
# v0.0.1 fee
FEE_REVISIONS = {'0.0.1': {'required': ['amount', 'address'], 'optional': []}}
CURRENT_FEE_REVISION = '0.0.1'

View file

@ -32,7 +32,6 @@ from lbrynet.conf import SOURCE_TYPES
from lbrynet.core.LBRYMetadata import Metadata
log = logging.getLogger(__name__)
log.setLevel(logging.INFO)
alert = logging.getLogger("lbryalert." + __name__)