Provide instructions for running with debug logs #42
Answered
by
sauljabin
tmgstevens
asked this question in
Q&A
-
I'm seeing an issue where Kaskade doesn't render because of |
Beta Was this translation helpful? Give feedback.
Answered by
sauljabin
Jul 17, 2024
Replies: 1 comment
-
Hi @tmgstevens thanks for asking. Here you have some guidelines https://github.com/sauljabin/kaskade/blob/main/DEVELOPMENT.md. But in general you have to: poetry install
poetry shell
textual console --port 7342 In another terminal: poetry shell
textual run --port 7342 --dev -c kaskade admin -b localhost:19092 Also kaskade has a default logger you can use: tail -f ~/.kaskade/kaskade.log Then in the code you could: from kaskade import logger
...
logger.error("my error")
... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sauljabin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @tmgstevens thanks for asking.
Here you have some guidelines https://github.com/sauljabin/kaskade/blob/main/DEVELOPMENT.md.
But in general you have to:
In another terminal:
Also kaskade has a default logger you can use:
tail -f ~/.kaskade/kaskade.log
Then in the code you could: