diff --git a/performance.html b/performance.html
index 6f9a9faa137a717e5172046391cb8bdd65a39fff_cGVyZm9ybWFuY2UuaHRtbA==..add99aaf7a214dd9945c87f2782776ec7afbe6f8_cGVyZm9ybWFuY2UuaHRtbA== 100644
--- a/performance.html
+++ b/performance.html
@@ -243,8 +243,6 @@
 <p>locals(), globals(), sys._getframe(), sys.exc_info(), and sys.settrace
 work in PyPy, but they incur a performance penalty that can be huge by
 disabling the JIT over the enclosing JIT scope.</p>
-<p>One unobvious case where frame introspection is used is the logging
-module. Don't use the logging module if you need to run fast.</p>
 <p><em>(Thanks Eric S. Raymond for the text above)</em></p>
 </div>
 </div>
diff --git a/source/performance.txt b/source/performance.txt
index 6f9a9faa137a717e5172046391cb8bdd65a39fff_c291cmNlL3BlcmZvcm1hbmNlLnR4dA==..add99aaf7a214dd9945c87f2782776ec7afbe6f8_c291cmNlL3BlcmZvcm1hbmNlLnR4dA== 100644
--- a/source/performance.txt
+++ b/source/performance.txt
@@ -236,9 +236,6 @@
 work in PyPy, but they incur a performance penalty that can be huge by
 disabling the JIT over the enclosing JIT scope.
 
-One unobvious case where frame introspection is used is the logging
-module. Don't use the logging module if you need to run fast.
-
 *(Thanks Eric S. Raymond for the text above)*