11 lines
179 B
Python
11 lines
179 B
Python
![]() |
import logging
|
||
|
from django.core.cache import cache
|
||
|
|
||
|
|
||
|
class RedisHandler(logging.StreamHandler):
|
||
|
|
||
|
def emit(self, record):
|
||
|
msg = self.format(record)
|
||
|
print(msg)
|
||
|
|