Cara Menghentikan Penulisan Log Otomatis oleh Fungsi Lain dalam Python

logger = logging.getLogger('my-logger')
logger.propagate = False
# now if you use logger it will not log to console.
Darkstar