Re: django command logging levels

2019-02-16 Thread co16326 . ccet
Thank U for help. I will check the links to get more info :-) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post

Re: getting error when installing channels

2019-02-16 Thread Jason
You might get better results with a linux virtual machine. Windows before version 10 was always very difficult to work on non Java or C# projects and I found python and Django work to be particularly frustrating. At one workplace that was windows only, I just used vagrant and an unbuntu

ModuleNotFoundError: No module named 'api'

2019-02-16 Thread senthu nithy
The error is Unhandled exception in thread started by .wrapper at 0x021434177B70> Traceback (most recent call last): File "C:\Users\RAAM COMPUTERS\AppData\Local\Programs\Python\Python37\lib\site-packages\django\utils\autoreload.py", line 225, in wrapper fn(*args, **kwargs) File

Re: django command logging levels

2019-02-16 Thread co16326 . ccet
But I have added a logger setting in my django settings file, then also do I have to add verbosity setting arg in my custom management command ? On Saturday, February 16, 2019 at 4:12:07 AM UTC+5:30, Dan Davis wrote: > > The common verbosity will be passed to the handler: > > class

Re: django command logging levels

2019-02-16 Thread Jason
verbosity is varying levels of output. management commands output to stdout directly, which is different from logging. I would suggest you look at the implementation of the included django management commands and

Re: django command logging levels

2019-02-16 Thread Jason
however, if you want to incorporate logging levels, like DEBUG, INFO, WARN in your management commands and have them correspond to a verbosity level check out https://www.crccheck.com/blog/django-management-commands-and-verbosity/ -- You received this message because you are subscribed to the