From 85c82e74677274b8ca2e16f0c231d1b787b82b68 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 5 Feb 2018 00:21:39 +0200 Subject: [PATCH] uasyncio.core: example_call_soon.py: Add logging setup. --- uasyncio.core/example_call_soon.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uasyncio.core/example_call_soon.py b/uasyncio.core/example_call_soon.py index f58fdbd2..7379144f 100644 --- a/uasyncio.core/example_call_soon.py +++ b/uasyncio.core/example_call_soon.py @@ -1,5 +1,8 @@ import uasyncio.core as asyncio import time +import logging +logging.basicConfig(level=logging.DEBUG) +#asyncio.set_debug(True) def cb():