I am building a django 2.0 application, and I have noticed some strange output in my console when I use runserver. I use logging a lot to follow what is happening in my code as I write it, so there are a lot of logging messages in the console. However, these weird messages do not have the same format as the logging messages.
normal log message:
[2018-10-26 09:16:38] DEBUG [memorabilia.admin.search_metadata:86] search_metadata END - , Document
weird messages:
date_hierarchy cl=%s created
link=%s ?
link=%s ?created__month=5&created__year=2018
link=%s ?created__month=6&created__year=2018
link=%s ?created__month=10&created__year=2018
From the flow in the console messages, they come from one of my Admin classes. I cannot find anything like these messages in that Admin class. At first, I thought they were some old print statements left over before I started using logging, but I have grep'ed for any print statements in my entire code base, and there are not any. They look a little like urls, but there are not print statements in my urls.py files. I also grep'ed for parts of these strings and the whole strings, and they are not in any of my files.
I am stumped on how to track down these strange messages.
Thanks for any help you can provide!
Mark