ESPHome 2025.5.0
Loading...
Searching...
No Matches
script.cpp
Go to the documentation of this file.
1#include "script.h"
2#include "esphome/core/log.h"
3
4namespace esphome {
5namespace script {
6
7static const char *const TAG = "script";
8
9void ScriptLogger::esp_log_(int level, int line, const char *format, const char *param) {
10 esp_log_printf_(level, TAG, line, format, param);
11}
12
13} // namespace script
14} // namespace esphome
void esp_log_(int level, int line, const char *format, const char *param)
Definition script.cpp:9
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
void HOT esp_log_printf_(int level, const char *tag, int line, const char *format,...)
Definition log.cpp:11