Xqt added a comment.

  I see. 'pywiki' logger will be initialized to level 11 and there is no easy 
way to change that. As a work-around you can modify the logger after it was 
initialized e.g.
  
    import logging
    import pywikibot
    pywikibot.output('This will initialize the logger')
    logger = logging.getLogger('pywiki')
    logger.setLevel(logging.WARNING)
    pywikibot.output('This message will not be logged anymore')
    pywikibot.log('Also verbose lgs are hidden')
    pywikibot.warning('Warnings are still logged')
    pywikibot.error('Errors are logged too.)

TASK DETAIL
  https://phabricator.wikimedia.org/T272088

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Xqt
Cc: Xqt, Aklapper, Inductiveload, pywikibot-bugs-list, JohnsonLee01, SHEKH, 
Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, JJMC89, 
Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, Alchimista, Rxy
_______________________________________________
pywikibot-bugs mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs

Reply via email to