Forgot to add __name__ in getLogger() don't know if it is harmless grabbing the root logger, added __name__ just to be safe
This commit is contained in:
@@ -20,7 +20,7 @@ class TrainingContentService:
|
||||
def __init__(self, kb, openai, firestore):
|
||||
self._training_content_module = kb
|
||||
self._db = firestore
|
||||
self._logger = getLogger()
|
||||
self._logger = getLogger(__name__)
|
||||
self._llm = openai
|
||||
|
||||
def get_tips(self, stats):
|
||||
|
||||
Reference in New Issue
Block a user