diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 01bc5421b6d46b66601d8dbb9a7752990f360649..495e62d2d43f9c7920593c20aaff508182c33268 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -21,7 +21,7 @@
 bl_info = {
     "name": "FBX format",
     "author": "Campbell Barton, Bastien Montagne, Jens Restemeier",
-    "version": (4, 23, 0),
+    "version": (4, 24, 0),
     "blender": (2, 90, 0),
     "location": "File > Import-Export",
     "description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",
diff --git a/io_scene_fbx/fbx_utils.py b/io_scene_fbx/fbx_utils.py
index c35399b24cd8ff021e8379a5ad80ff71ff21996d..3a4214230b109f2cf044ce1257148b28686c0027 100644
--- a/io_scene_fbx/fbx_utils.py
+++ b/io_scene_fbx/fbx_utils.py
@@ -150,7 +150,8 @@ FBX_FRAMERATES = (
 
 # ##### Misc utilities #####
 
-DO_PERFMON = True
+# Enable performance reports (measuring time used to perform various steps of importing or exporting).
+DO_PERFMON = False
 
 if DO_PERFMON:
     class PerfMon():