Satnogs-client logging system primer?

As you can see in another thread I have some problems getting the sftware do what I want it to do. I have tried to use the logging system, but I can’t figure out how to e.g. see the log messages logged with LOGGER.debug().

I would appreciate very much if somebody could give me a pointer to some documentation (other that the code :slight_smile:) or perhaps take the time to explain it to me.

Please show the exact code-line that doesn’t work.

This one

My problem is simply,

  1. that I can’t find out how to make loglevel INFO produce output and
  2. I don’t know where to look for any output

I know there is something on logging in settings.py, but which handles can you use and how to turn this handles?

Ok, I wanted to see the line you try to use to make your logger output, but nvm:
Have you followed the advise to use python2.7 to get your system work?

In settings.py I tried to change the following lines:

'loggers': {
        'satnogsclient': {
            'handlers': ['console'],
            'level': 'INFO',

to:

'loggers': {
        'satnogsclient': {
            'handlers': ['console'],
            'level': 'DEBUG',

although it is not at all obvious to me how these lines are used.

I have decided to take a closer look at the documentation for Python’s ‘logging’ module.