-
Type:
Technical Debt
-
Resolution: Done
-
Priority:
Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Live Restore
-
None
-
Storage Engines
The wt_verbose set of functions requires a print-format argument. In the cases where one wants to simply print a string, the generally accepted way to do it is:
__wt_verbose(..., "%s", "My full string here");
There are several incorrect uses like:
__wt_verbose(..., "My %s string here", "full");
The first usage is preferred because it keeps the entire string in one location.