From 5ba6f15335353c3e2d7a675d2b3e5711f3314e99 Mon Sep 17 00:00:00 2001 From: Josh Klar Date: Mon, 3 Sep 2018 13:50:27 -0700 Subject: [PATCH] Use the new debug mode --- boards/klardotsh/twotwo_matrix_feather.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boards/klardotsh/twotwo_matrix_feather.py b/boards/klardotsh/twotwo_matrix_feather.py index 84c9cb8..9a814c8 100644 --- a/boards/klardotsh/twotwo_matrix_feather.py +++ b/boards/klardotsh/twotwo_matrix_feather.py @@ -1,3 +1,5 @@ +from logging import DEBUG + import board from kmk.common.consts import DiodeOrientation @@ -20,6 +22,7 @@ def main(): row_pins=rows, col_pins=cols, diode_orientation=diode_orientation, + log_level=DEBUG, ) firmware.go()