who can I get logs whit components-custom-components? #7240
-
|
I have developed a components-custom-components using Python. In this regard, I have added logs through the following code and enabled the debug mode. However, I have not observed any logs in the terminal. logger = logging.getLogger(__name__)
def process(self) -> Data:
logger.info("processing……") |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
To enable logging in Langflow custom components, you need to explicitly call To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other |
Beta Was this translation helpful? Give feedback.
just like this
from langflow.logging import logger