Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/src/commit/38b0e2c03fdaae9da431e836a897e8fe4042dade/user/log.h
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#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
|
|
|