2015-04-14 17:26:59 -07:00
|
|
|
from __future__ import print_function, division, absolute_import
|
|
|
|
from fontTools.misc.py23 import *
|
2016-01-24 14:20:59 +00:00
|
|
|
import logging
|
2016-01-29 18:44:43 +00:00
|
|
|
from fontTools.misc.loggingTools import Logger, configLogger
|
2016-01-24 14:20:59 +00:00
|
|
|
|
2016-01-29 18:44:43 +00:00
|
|
|
# set the logging.Logger class to one which supports the "last resort" handler,
|
|
|
|
# to be used when the client doesn't explicitly configure logging.
|
|
|
|
# It prints the bare message to sys.stderr, only for events of severity WARNING
|
|
|
|
# or greater.
|
|
|
|
logging.setLoggerClass(Logger)
|
2015-04-14 17:26:59 -07:00
|
|
|
|
2016-01-29 18:44:43 +00:00
|
|
|
log = logging.getLogger(__name__)
|
2016-01-24 14:21:38 +00:00
|
|
|
|
2015-08-31 18:57:15 +01:00
|
|
|
version = "3.0"
|
2016-01-24 14:21:38 +00:00
|
|
|
|
|
|
|
__all__ = ["version", "log", "configLogger"]
|