summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-06-14 07:57:54 -0700
committerScott Gasch <[email protected]>2022-06-14 07:57:54 -0700
commitfa101dcf585cc6578ed3fd9a0cea748c0114b59c (patch)
tree95b0639426da623e9cda194b5f06a4a23c23b420
parentf9067b4f09f7effbfd1fd1d89b8a0050b4270bc9 (diff)
Add logging to trie.
-rw-r--r--collect/trie.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/collect/trie.py b/collect/trie.py
index 547d67a..36b2469 100644
--- a/collect/trie.py
+++ b/collect/trie.py
@@ -9,8 +9,11 @@ for examples.
"""
+import logging
from typing import Any, Generator, Sequence
+logger = logging.getLogger(__name__)
+
class Trie(object):
"""