From fa9aed0a4e9def8b8f69633ca4614a10c50e4a31 Mon Sep 17 00:00:00 2001 From: Jacob Plaster Date: Thu, 22 Nov 2018 11:49:57 +0000 Subject: [PATCH] examples: change log level to debug --- bfxapi/examples/connect.py | 2 +- bfxapi/examples/subscribe_trades_candles.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bfxapi/examples/connect.py b/bfxapi/examples/connect.py index 829abff..c37de49 100644 --- a/bfxapi/examples/connect.py +++ b/bfxapi/examples/connect.py @@ -5,7 +5,7 @@ sys.path.append('../') from bfxapi import Client bfx = Client( - logLevel='INFO' + logLevel='DEBUG' ) @bfx.ws.on('error') diff --git a/bfxapi/examples/subscribe_trades_candles.py b/bfxapi/examples/subscribe_trades_candles.py index f2943e3..6900c87 100644 --- a/bfxapi/examples/subscribe_trades_candles.py +++ b/bfxapi/examples/subscribe_trades_candles.py @@ -5,7 +5,7 @@ sys.path.append('../') from bfxapi import Client bfx = Client( - logLevel='INFO' + logLevel='DEBUG' ) @bfx.ws.on('error')