Add logging to trie.
authorScott Gasch <[email protected]>
Tue, 14 Jun 2022 14:57:54 +0000 (07:57 -0700)
committerScott Gasch <[email protected]>
Tue, 14 Jun 2022 14:57:54 +0000 (07:57 -0700)
collect/trie.py

index 547d67a4124abc07f425ecf21616bf2c509beb4e..36b246969d39381ccc7388a9bc63d4dc2651346f 100644 (file)
@@ -9,8 +9,11 @@ for examples.
 
 """
 
+import logging
 from typing import Any, Generator, Sequence
 
+logger = logging.getLogger(__name__)
+
 
 class Trie(object):
     """