Add log line to show if API encryption is being used (#2450)

This commit is contained in:
Jesse Hills 2021-10-06 11:26:18 +13:00 committed by Otto winter
parent 32a664eedc
commit d9b2903d78
No known key found for this signature in database
GPG Key ID: 48ED2DDB96D7682C

View File

@ -134,6 +134,11 @@ void APIServer::loop() {
void APIServer::dump_config() {
ESP_LOGCONFIG(TAG, "API Server:");
ESP_LOGCONFIG(TAG, " Address: %s:%u", network_get_address().c_str(), this->port_);
#ifdef USE_API_NOISE
ESP_LOGCONFIG(TAG, " Using noise encryption: YES");
#else
ESP_LOGCONFIG(TAG, " Using noise encryption: NO");
#endif
}
bool APIServer::uses_password() const { return !this->password_.empty(); }
bool APIServer::check_password(const std::string &password) const {