summaryrefslogtreecommitdiff
path: root/Documentation/sphinx/kernel_abi.py
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2025-02-10 13:17:50 +0300
committerJonathan Corbet <corbet@lwn.net>2025-02-10 21:19:56 +0300
commit3d89178b85a1c1fd106289afba0adfa6d013676a (patch)
tree673ac2bdec92c84b04aa19a663f592b13530dc41 /Documentation/sphinx/kernel_abi.py
parent2b087edf588c66d149a7ba29bd37f2ad6edbdc9f (diff)
downloadlinux-3d89178b85a1c1fd106289afba0adfa6d013676a.tar.xz
docs: sphinx: remove kernellog.py file
In the past, there was a need for a wrapper due to different Sphinx versions support (before Sphinx 1.6). This is long gone, and now it is just a wrapper. Get rig of it to simplify the code. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/48bf16f199250d7048ca164d1b90773861915157.1739182025.git.mchehab+huawei@kernel.org
Diffstat (limited to 'Documentation/sphinx/kernel_abi.py')
-rw-r--r--Documentation/sphinx/kernel_abi.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/sphinx/kernel_abi.py b/Documentation/sphinx/kernel_abi.py
index 5911bd0d7965..8401562cb5d9 100644
--- a/Documentation/sphinx/kernel_abi.py
+++ b/Documentation/sphinx/kernel_abi.py
@@ -37,13 +37,13 @@ import os
import subprocess
import sys
import re
-import kernellog
from docutils import nodes, statemachine
from docutils.statemachine import ViewList
from docutils.parsers.rst import directives, Directive
from docutils.utils.error_reporting import ErrorString
from sphinx.util.docutils import switch_source_input
+from sphinx.util import logging
__version__ = '1.0'
@@ -64,6 +64,7 @@ class KernelCmd(Directive):
optional_arguments = 2
has_content = False
final_argument_whitespace = True
+ logger = logging.getLogger('kernel_abi')
option_spec = {
"debug" : directives.flag,
@@ -129,7 +130,7 @@ class KernelCmd(Directive):
else:
content.append(line, f, ln)
- kernellog.info(self.state.document.settings.env.app, "%s: parsed %i lines" % (fname, n))
+ self.logger.info("%s: parsed %i lines" % (fname, n))
if content:
self.do_parse(content, node)