log.py 90 Bytes
Newer Older
1
2
3
4
5
6
from functools import lru_cache


@lru_cache(10)
def log_once(log, msg:str):
    log(msg)