Update the client's skeleton logging framework to use it for --client_debug.
We are still unable to turn this on to write to files, but there are currently 2 logging systems in use in the client: the inactive one, and the print-to-stderr option triggered by --client_debug. Combine these, so we can use the same logging format for both.
Also combine it with the VerboseLogging functionality - it was not documented anywhere and seems redundant.
RELNOTES: None.
PiperOrigin-RevId: 189979051
diff --git a/src/main/cpp/blaze.h b/src/main/cpp/blaze.h
index 7e3636d..d5c467d 100644
--- a/src/main/cpp/blaze.h
+++ b/src/main/cpp/blaze.h
@@ -21,8 +21,7 @@
namespace blaze {
int Main(int argc, const char* argv[], WorkspaceLayout* workspace_layout,
- OptionProcessor* option_processor,
- std::unique_ptr<blaze_util::LogHandler> log_handler);
+ OptionProcessor* option_processor);
} // namespace blaze