Skip to content

Commit

Permalink
logging.basicConfig(level=logging.INFO)
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-p committed Sep 12, 2024
1 parent 3bbcd40 commit 65456c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algokit_subscriber_py/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from algosdk.encoding import encode_address as sdk_encode_address

logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
logging.basicConfig(level=logging.INFO)

def range_inclusive(start: int, end: int) -> list[int]:
return list(range(start, end + 1))
Expand Down

0 comments on commit 65456c9

Please sign in to comment.