31 lines
939 B
Python
31 lines
939 B
Python
"""Defines a mapping of shortened names for logger configuration files to their full path."""
|
|
|
|
import os
|
|
import os.path
|
|
|
|
|
|
def _get_named_loggers():
|
|
"""Explore this directory for any YAML configuration files.
|
|
|
|
Returns a mapping of basenames without the file extension to their full path.
|
|
"""
|
|
|
|
dirname = os.path.dirname(__file__)
|
|
named_loggers = {}
|
|
|
|
try:
|
|
(root, _dirs, files) = next(os.walk(dirname))
|
|
for filename in files:
|
|
(short_name, ext) = os.path.splitext(filename)
|
|
if ext in (".yml", ".yaml"):
|
|
pathname = os.path.join(root, filename)
|
|
named_loggers[short_name] = os.path.relpath(pathname)
|
|
except StopIteration:
|
|
# 'dirname' does not exist, which should be impossible because it contains __file__.
|
|
raise IOError("Directory '%s' does not exist" % (dirname))
|
|
|
|
return named_loggers
|
|
|
|
|
|
NAMED_LOGGERS = _get_named_loggers()
|