set logging to info

This commit is contained in:
Victor Shyba 2018-12-12 20:12:35 -03:00
parent 50fc027289
commit 1c860e8578

View file

@ -24,6 +24,7 @@ def main():
parser = get_argument_parser()
args = parser.parse_args()
coin_class = get_coin_class(args.spvserver)
logging.basicConfig(level=logging.INFO)
logging.info('torba.server starting')
try:
server = Server(Env(coin_class))