logging - django runserver shows too many logs -


for instance, when django haystack gets more_like_this data, console flooded result data.

how can suppress specific log? example django-haystack related log?

def more_like_this(self):     haystack.query import searchqueryset      sqs = searchqueryset().more_like_this(self).models(type(self)).exclude(id=self.id).exclude(deleted=true)     sqs.load_all()      return sqs # generates tons of log... 


Comments

Popular posts from this blog

html - jquery - p element wont show after I hid it -

python - BeautifulSoup: How to get the nearest tag -

php - Return Last Insert ID with PDO -