On Wed, Feb 7, 2018 at 11:47 AM, Bruce Ravel <bra...@bnl.gov> wrote:

>
> Would it be helpful, then, to do something like this in some appropriate
> place?
>
>   import warnings
>   warnings.filterwarnings("ignore",".*No handlers could be found*")
>
>
In principle that could work, if pyFAI was raising Warnings.  But I now see
that they are not doing that, but instead using the logging module to
produce to warnings. So we can and should use:

    import logging
    logging.getLogger('pyFAI').setLevel(logging.ERROR)

which we will add.

--Matt

PS: I also asked the nice pyFAI folks at ESRF to please warn less about
missing imports...
_______________________________________________
Ifeffit mailing list
Ifeffit@millenia.cars.aps.anl.gov
http://millenia.cars.aps.anl.gov/mailman/listinfo/ifeffit
Unsubscribe: http://millenia.cars.aps.anl.gov/mailman/options/ifeffit

Reply via email to