void Log()

in chime-sdk-signaling-cpp/src/utils/logging.cc [56:62]


void Log(LogLevel current_log_level, LogLevel given_log_level, const std::string& log_message) {
  auto current_level_val = static_cast<int>(current_log_level);
  auto given_level_val = static_cast<int>(given_log_level);

  if (current_level_val > given_level_val) return;
  std::cout << "[" << LogLevelToString(given_log_level) << "]: " << log_message << std::endl;
}