Per discussion in D28616, having two ways two request logging (log
enable lldb XXX verbose && log enable -v lldb XXX) is confusing. This
removes the first option and standardizes all code to use the second
one.
I've added a LLDB_LOGV macro as a shorthand for if(log &&
log->GetVerbose()) and switched most of the affected log statements to
use that (I've only left a couple of cases that were doing complex
computations in an if(log) block).
There's a subtle behavioral change here, which is that previously this line would get logged even if LIBLLDB_LOG_DYNAMIC_LOADER was not set, and now it won't. However, I've always found the GetLogIfAny / GetLogIfAll split unnecessarily confusing, so I'm not opposed to this change. Just want to point it out.