From: Scott Gasch Date: Tue, 14 Jun 2022 14:57:54 +0000 (-0700) Subject: Add logging to trie. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=fa101dcf585cc6578ed3fd9a0cea748c0114b59c;p=python_utils.git Add logging to trie. --- 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): """