mirror of
https://github.com/esphome/esphome.git
synced 2025-02-15 09:28:16 +00:00
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> fixes https://github.com/esphome/feature-requests/issues/241
15 lines
325 B
C++
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
|