hw/intc/i8259: Refactor pic_read_irq() to avoid uninitialized variable
[qemu/ar7.git] / docs / sphinx / kernellog.py
blobaf924f51a7dcc5838c80a11c3ff4447e500936e2
1 # SPDX-License-Identifier: GPL-2.0
3 # Sphinx has deprecated its older logging interface, but the replacement
4 # only goes back to 1.6. So here's a wrapper layer to keep around for
5 # as long as we support 1.4.
7 import sphinx
9 if sphinx.__version__[:3] >= '1.6':
10 UseLogging = True
11 from sphinx.util import logging
12 logger = logging.getLogger('kerneldoc')
13 else:
14 UseLogging = False
16 def warn(app, message):
17 if UseLogging:
18 logger.warning(message)
19 else:
20 app.warn(message)
22 def verbose(app, message):
23 if UseLogging:
24 logger.verbose(message)
25 else:
26 app.verbose(message)