Summary
Use should use flags instead of booleans to store trace options because it is consistent with WiredTiger code style. We can use
uint32_t trace_flags;
Instead of
bool trace; bool trace_bulk; bool trace_cursor; bool trace_mirror_fail; bool trace_read; bool trace_timestamp; bool trace_txn;
in "GLOBAL" in "format.h:192"