From cfa006cb674b5a68347823584c4de5c5d4d523e2 Mon Sep 17 00:00:00 2001 From: Jody Klymak Date: Mon, 18 Dec 2017 11:16:14 -0800 Subject: [PATCH] LOG: added printout of rcParams at debug level --- lib/matplotlib/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py index 846c08d1c32f..0431e0ea67ea 100644 --- a/lib/matplotlib/__init__.py +++ b/lib/matplotlib/__init__.py @@ -1145,6 +1145,7 @@ def rc_params_from_file(fname, fail_on_error=False, use_default_template=True): Please do not ask for support with these customizations active. ***************************************************************** """, '\n'.join(config['text.latex.preamble'])) + _log.info('loaded rc file %s', fname) return config @@ -1181,6 +1182,9 @@ def rc_params_from_file(fname, fail_on_error=False, use_default_template=True): if rcParams['axes.formatter.use_locale']: locale.setlocale(locale.LC_ALL, '') +_log.debug('rcParams: ') +_log.debug(rcParams) + def rc(group, **kwargs): """