Adds logging functionality to the bazel client, which will be activated in a later change.
--
MOS_MIGRATED_REVID=139951184
diff --git a/src/main/cpp/option_processor.cc b/src/main/cpp/option_processor.cc
index f7340db..e3224a2 100644
--- a/src/main/cpp/option_processor.cc
+++ b/src/main/cpp/option_processor.cc
@@ -26,6 +26,7 @@
#include "src/main/cpp/blaze_util_platform.h"
#include "src/main/cpp/util/file.h"
#include "src/main/cpp/util/file_platform.h"
+#include "src/main/cpp/util/logging.h"
#include "src/main/cpp/util/strings.h"
#include "src/main/cpp/workspace_layout.h"
@@ -71,6 +72,7 @@
list<string>* import_stack,
string* error) {
string filename(filename_ref); // file
+ BAZEL_LOG(INFO) << "Parsing the RcFile " << filename;
string contents;
if (!ReadFile(filename, &contents)) {
// We checked for file readability before, so this is unexpected.