mirror of
https://github.com/ModOrganizer2/pystubs-generation.git
synced 2026-07-27 14:07:13 -07:00
10 lines
201 B
Python
10 lines
201 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
import logging
|
|
import sys
|
|
|
|
|
|
logging.basicConfig(stream=sys.stderr, format="%(levelname)s: %(message)s")
|
|
logger = logging.getLogger(__name__)
|
|
logger.setLevel(logging.WARNING)
|