Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/envoy/http/mixer/control_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ class ControlFactory : public Logger::Loggable<Logger::Id::config> {
return ENVOY_LOG_CHECK_LEVEL(warn);
case istio::utils::Logger::Level::ERROR_:
return ENVOY_LOG_CHECK_LEVEL(error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default:
  NOT_REACHED_GCOVR_EXCL_LINE;

is more in line with Envoy's coding style, and it should fix this as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

default:
NOT_REACHED_GCOVR_EXCL_LINE;
}
}

Expand Down