mirror of
https://github.com/esphome/esphome.git
synced 2024-12-01 19:24:14 +01:00
Add log line to show if API encryption is being used (#2450)
This commit is contained in:
parent
a57580b5ab
commit
e083d7f4d0
1 changed files with 5 additions and 0 deletions
|
@ -133,6 +133,11 @@ void APIServer::loop() {
|
||||||
void APIServer::dump_config() {
|
void APIServer::dump_config() {
|
||||||
ESP_LOGCONFIG(TAG, "API Server:");
|
ESP_LOGCONFIG(TAG, "API Server:");
|
||||||
ESP_LOGCONFIG(TAG, " Address: %s:%u", network::get_use_address().c_str(), this->port_);
|
ESP_LOGCONFIG(TAG, " Address: %s:%u", network::get_use_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::uses_password() const { return !this->password_.empty(); }
|
||||||
bool APIServer::check_password(const std::string &password) const {
|
bool APIServer::check_password(const std::string &password) const {
|
||||||
|
|
Loading…
Reference in a new issue