| // |
| // |
| // Copyright 2015 gRPC authors. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| // |
| // |
| |
| #include <grpc/support/port_platform.h> |
| |
| #include "absl/log/log.h" |
| |
| #include <stdio.h> |
| #include <string.h> |
| |
| #include "absl/log/globals.h" |
| #include "absl/strings/match.h" |
| #include "absl/strings/str_cat.h" |
| |
| #include <grpc/support/alloc.h> |
| #include <grpc/support/atm.h> |
| #include <grpc/support/log.h> |
| |
| #include "src/core/lib/config/config_vars.h" |
| #include "src/core/lib/gprpp/crash.h" |
| #include "src/core/util/string.h" |
| |
| void gpr_default_log(gpr_log_func_args* args); |
| void gpr_platform_log(gpr_log_func_args* args); |
| static gpr_atm g_log_func = reinterpret_cast<gpr_atm>(gpr_default_log); |
| |
| void gpr_unreachable_code(const char* reason, const char* file, int line) { |
| grpc_core::Crash(absl::StrCat("UNREACHABLE CODE: ", reason), |
| grpc_core::SourceLocation(file, line)); |
| } |
| |
| void gpr_assertion_failed(const char* filename, int line, const char* message) { |
| grpc_core::Crash(absl::StrCat("ASSERTION FAILED: ", message), |
| grpc_core::SourceLocation(filename, line)); |
| } |
| |
| const char* gpr_log_severity_string(gpr_log_severity severity) { |
| switch (severity) { |
| case GPR_LOG_SEVERITY_DEBUG: |
| return "D"; |
| case GPR_LOG_SEVERITY_INFO: |
| return "I"; |
| case GPR_LOG_SEVERITY_ERROR: |
| return "E"; |
| } |
| GPR_UNREACHABLE_CODE(return "UNKNOWN"); |
| } |
| |
| int gpr_should_log(gpr_log_severity severity) { |
| switch (severity) { |
| case GPR_LOG_SEVERITY_ERROR: |
| return absl::MinLogLevel() <= absl::LogSeverityAtLeast::kError; |
| case GPR_LOG_SEVERITY_INFO: |
| // There is no documentation about how expensive or inexpensive |
| // MinLogLevel is. We could have saved this in a static const variable. |
| // But decided against it just in case anyone programatically sets absl |
| // min log level settings after this has been initialized. |
| // Same holds for VLOG_IS_ON(2). |
| return absl::MinLogLevel() <= absl::LogSeverityAtLeast::kInfo; |
| case GPR_LOG_SEVERITY_DEBUG: |
| return VLOG_IS_ON(2); |
| default: |
| DLOG(ERROR) << "Invalid gpr_log_severity."; |
| return true; |
| } |
| } |
| |
| void gpr_default_log(gpr_log_func_args* args) { |
| switch (args->severity) { |
| case GPR_LOG_SEVERITY_DEBUG: |
| // Log DEBUG messages as VLOG(2). |
| VLOG(2).AtLocation(args->file, args->line) << args->message; |
| return; |
| case GPR_LOG_SEVERITY_INFO: |
| LOG(INFO).AtLocation(args->file, args->line) << args->message; |
| return; |
| case GPR_LOG_SEVERITY_ERROR: |
| LOG(ERROR).AtLocation(args->file, args->line) << args->message; |
| return; |
| default: |
| LOG(ERROR) << __func__ << ": unknown gpr log severity(" << args->severity |
| << "), using ERROR"; |
| LOG(ERROR).AtLocation(args->file, args->line) << args->message; |
| } |
| } |
| |
| void gpr_log_message(const char* file, int line, gpr_log_severity severity, |
| const char* message) { |
| if (gpr_should_log(severity) == 0) { |
| return; |
| } |
| |
| gpr_log_func_args lfargs; |
| memset(&lfargs, 0, sizeof(lfargs)); |
| lfargs.file = file; |
| lfargs.line = line; |
| lfargs.severity = severity; |
| lfargs.message = message; |
| reinterpret_cast<gpr_log_func>(gpr_atm_no_barrier_load(&g_log_func))(&lfargs); |
| } |
| |
| void gpr_set_log_verbosity( |
| [[maybe_unused]] gpr_log_severity deprecated_setting) { |
| LOG(ERROR) |
| << "This will not be set. Please set this via absl log level settings."; |
| } |
| |
| void gpr_log_verbosity_init(void) { |
| // This is enabled in Github only. |
| // This ifndef is converted to ifdef internally by copybara. |
| // Internally grpc verbosity is managed using absl settings. |
| // So internally we avoid setting it like this. |
| #ifndef GRPC_VERBOSITY_MACRO |
| // SetMinLogLevel sets the value for the entire binary, not just gRPC. |
| // This setting will change things for other libraries/code that is unrelated |
| // to grpc. |
| absl::string_view verbosity = grpc_core::ConfigVars::Get().Verbosity(); |
| DVLOG(2) << "Log verbosity: " << verbosity; |
| if (absl::EqualsIgnoreCase(verbosity, "INFO")) { |
| LOG(WARNING) << "Not suitable for production. Prefer WARNING or ERROR. " |
| "However if you see this message in a debug environmenmt " |
| "or test environmenmt it is safe to ignore this message."; |
| absl::SetVLogLevel("*grpc*/*", -1); |
| absl::SetMinLogLevel(absl::LogSeverityAtLeast::kInfo); |
| } else if (absl::EqualsIgnoreCase(verbosity, "DEBUG")) { |
| LOG(WARNING) << "Not suitable for production. Prefer WARNING or ERROR. " |
| "However if you see this message in a debug environmenmt " |
| "or test environmenmt it is safe to ignore this message."; |
| absl::SetVLogLevel("*grpc*/*", 2); |
| absl::SetMinLogLevel(absl::LogSeverityAtLeast::kInfo); |
| } else if (absl::EqualsIgnoreCase(verbosity, "ERROR")) { |
| absl::SetVLogLevel("*grpc*/*", -1); |
| absl::SetMinLogLevel(absl::LogSeverityAtLeast::kError); |
| } else if (absl::EqualsIgnoreCase(verbosity, "NONE")) { |
| absl::SetVLogLevel("*grpc*/*", -1); |
| absl::SetMinLogLevel(absl::LogSeverityAtLeast::kInfinity); |
| } else if (verbosity.empty()) { |
| // Do not alter absl settings if GRPC_VERBOSITY flag is not set. |
| } else { |
| LOG(ERROR) << "Unknown log verbosity: " << verbosity; |
| } |
| #endif // GRPC_VERBOSITY_MACRO |
| } |
| |
| void gpr_set_log_function([[maybe_unused]] gpr_log_func deprecated_setting) { |
| LOG(ERROR) |
| << "This function is deprecated. This function will be deleted in the " |
| "next gRPC release. You may create a new absl LogSink with similar " |
| "functionality. gRFC: https://github.com/grpc/proposal/pull/425 "; |
| } |