daiquiri icon indicating copy to clipboard operation
daiquiri copied to clipboard

Python library to easily setup basic logging functionality

Results 12 daiquiri issues
Sort by recently updated
recently updated
newest added

Could you move the buildsystem to [PEP517](https://peps.python.org/pep-0517/)?

Using this syntax: ~~~py import daiquiri, logging daiquiri.setup() z = daiquiri.getLogger() z.warning('abcde') ~~~ I get colored output, but the level and message are colored the same. I can work around...

I don't think daiquiri provide a ready solution for multiprocessing context. ref: https://stackoverflow.com/questions/641420/how-should-i-log-while-using-multiprocessing-in-python ref: https://github.com/jruere/multiprocessing-logging

Daiquiri would also be great to use in Jupyter. Unfortunately, it seems in Jupyter one usually has to enforce TTY mode in order to make color work. There does not...

Hey, I *really* love how you can just do `daiquiri.setup()` and then just Move On. However, as soon as I would like to change the formatting (ie. drop the process...

I'm stuck using Windows :(for work). The ANSI escape character sequences are printed in Windows cmd.exe when outputting to stderr. ``` #test.py import daiquiri daiquiri.setup() logger = daiquiri.getLogger() logger.error("something went...

bug

In my app I create a logger using: ``` def create_logger(log_path, log_name, log_level=logging.INFO): daiquiri.setup( level=log_level, outputs=(daiquiri.output.File( directory=log_path, program_name=log_name), daiquiri.output.STDOUT,)) return daiquiri.getLogger(program_name=log_name) ``` When I look at the console, I see...

documentation

Python 3.12 introduced a new reserved attribute `taskName`, there's a patch in https://github.com/madzak/python-json-logger/pull/188 This attribute could be discarded to support both patched and unpatched versions, see: https://github.com/jupyter/jupyter_events/pull/100

More about codespell: https://github.com/codespell-project/codespell . I personally introduced it to dozens if not hundreds of projects already and so far only positive feedback. CI workflow has 'permissions' set only to...

Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.1 to 6.0.1. Release notes Sourced from actions/checkout's releases. v6.0.1 What's Changed Update all references from v5 and v4 to v6 by @​ericsciple in actions/checkout#2314 Add worktree...

dependencies
github_actions