1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-15 09:28:16 +00:00
jimtng 8c122aa372
Add support for parameters in scripts (#3538)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
fixes https://github.com/esphome/feature-requests/issues/241
2022-11-09 16:51:59 +13:00

15 lines
325 B
C++

#include "script.h"
#include "esphome/core/log.h"
namespace esphome {
namespace script {
static const char *const TAG = "script";
void ScriptLogger::esp_log_(int level, int line, const char *format, const char *param) {
esp_log_printf_(level, TAG, line, format, param);
}
} // namespace script
} // namespace esphome