logger.debug, not logging.debug

trilby
Marnanel Thurman 2019-08-17 17:15:17 +01:00
rodzic ae5a265af0
commit e5984df43d
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -350,7 +350,7 @@ class FollowingView(KepiView):
remote_url = None,
)
logging.debug('Finding followers of %s: %s',
logger.debug('Finding followers of %s: %s',
kwargs['username'], person)
return Following.objects.filter(follower=person.url,
@ -374,7 +374,7 @@ class FollowersView(KepiView):
remote_url = None,
)
logging.debug('Finding followers of %s: %s',
logger.debug('Finding followers of %s: %s',
kwargs['username'], person)
return Following.objects.filter(following=person.url,