Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/blame/commit/5714add24d3b57c5e0c72cf79134c58d20dc8e99/user/log.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
esp-link/user/log.h

16 lines
257 B

#ifndef LOG_H
#define LOG_H
#include "httpd.h"
#define LOG_MODE_AUTO 0
#define LOG_MODE_OFF 1
#define LOG_MODE_ON 2
void logInit(void);
void log_uart(bool enable);
int ajaxLog(HttpdConnData *connData);
int ajaxLogDbg(HttpdConnData *connData);
#endif