diff --git a/esphome/components/logger/logger.h b/esphome/components/logger/logger.h index 87a485ca52..3b7710a64a 100644 --- a/esphome/components/logger/logger.h +++ b/esphome/components/logger/logger.h @@ -39,7 +39,7 @@ namespace esphome::logger { /** Interface for receiving log messages without std::function overhead. * * Components can implement this interface instead of using lambdas with std::function - * to avoid the ~600 bytes per-type cost of std::function type erasure machinery. + * to reduce flash usage from std::function type erasure machinery. * * Usage: * class MyComponent : public Component, public LogListener {