Merge pull request #24893 from yihuazhang/reduce_noise_gcp_indicator

Decrease log level when BIOS data file is not found for on-GCP indication
pull/24873/head
yihuaz 4 years ago committed by GitHub
commit 182d88f992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/lib/security/credentials/alts/check_gcp_environment.cc

@ -57,7 +57,7 @@ namespace internal {
char* read_bios_file(const char* bios_file) {
FILE* fp = fopen(bios_file, "r");
if (!fp) {
gpr_log(GPR_ERROR, "BIOS data file cannot be opened.");
gpr_log(GPR_INFO, "BIOS data file does not exist or cannot be opened.");
return nullptr;
}
char buf[kBiosDataBufferSize + 1];

Loading…
Cancel
Save