Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions adafruit_gc_iot_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ def __init__(self, esp=None, secrets=None, log=False):
self.logger = None
if log is True:
self.logger = logging.getLogger("log")
self.logger.addHandler(logging.StreamHandler())
self.logger.setLevel(logging.DEBUG)
# Configuration, from secrets file
self._proj_id = secrets["project_id"]
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
# SPDX-License-Identifier: Unlicense

Adafruit-Blinka
adafruit-circuitpython-jwt
adafruit-circuitpython-logging>=4.0.1
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@
# Author details
author="Adafruit Industries",
author_email="circuitpython@adafruit.com",
install_requires=["Adafruit-Blinka"],
install_requires=[
"Adafruit-Blinka",
"adafruit-circuitpython-jwt",
"adafruit-circuitpython-logging>=4.0.1",
],
# Choose your license
license="MIT",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down