summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/tools')
-rwxr-xr-xsrc/third_party/wiredtiger/tools/optrack/wt_optrack_decode.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/tools/optrack/wt_optrack_decode.py b/src/third_party/wiredtiger/tools/optrack/wt_optrack_decode.py
index 380cab50eba..0837bc723dd 100755
--- a/src/third_party/wiredtiger/tools/optrack/wt_optrack_decode.py
+++ b/src/third_party/wiredtiger/tools/optrack/wt_optrack_decode.py
@@ -100,7 +100,8 @@ def funcIDtoName(funcID):
if (functionMap.has_key(funcID)):
return functionMap[funcID];
else:
- return "NULL";
+ print("Could not find the name for func " + str(funcID));
+ return "NULL";
#
# The format of the record is written down in src/include/optrack.h