Skip to content

essans/recipes_logging

Repository files navigation

recipes_logging

Collection of logging recipes

#logging.basicConfig(level=logging.DEBUG)

To watch the log file:

tail -f llama_agent.log | grep -- '- root -'

To filter the log file:

awk -F' - ' '$3 == "root"' llama_agent.log

grep ' - root - ' llama_agent.log

About

Collection of logging recipes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages