We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7769651 + d6ecb79 commit d5ad21cCopy full SHA for d5ad21c
README.md
@@ -285,7 +285,14 @@ same `channel_pat` will overwrite the old handler.
285
Deregisters the event handler function that was previously registered via `on` or
286
`register` method.
287
288
-
+## Logging
289
+You should define a logger in your app in order to make sure you get all the messages from the different components.<br>
290
+It will help you debug, and make sure you don't miss issues when they occur.<br>
291
+The simplest way to define a logger, if you have no experience with the python logger - will be something like this:
292
+```py
293
+import logging
294
+logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
295
+```
296
---
297
# Polygon API Service
298
0 commit comments