mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-01-12 02:40:04 +00:00
13 lines
262 B
Python
13 lines
262 B
Python
import logging
|
|
|
|
logging.basicConfig(level=logging.CRITICAL,
|
|
format='[%(levelname)s] %(message)s')
|
|
|
|
|
|
def debug_enable():
|
|
logging.getLogger().setLevel(logging.DEBUG)
|
|
|
|
|
|
def debug_disable():
|
|
logging.getLogger().setLevel(logging.CRITICAL)
|