From fa101dcf585cc6578ed3fd9a0cea748c0114b59c Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 14 Jun 2022 07:57:54 -0700 Subject: [PATCH] Add logging to trie. --- collect/trie.py | 3 +++ 1 file changed, 3 insertions(+) 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): """ -- 2.45.0