hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
kernel/Documentation/sphinx/kernellog.py
....@@ -25,4 +25,8 @@
2525 else:
2626 app.verbose(message)
2727
28
-
28
+def info(app, message):
29
+ if UseLogging:
30
+ logger.info(message)
31
+ else:
32
+ app.info(message)