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/80f3788564165858042fd7c2fb70677fb83123f6/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