Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/commits/commit/b150d3d026aae802d78fdcdc515c3ac94e2de8be/syslog
You should set ROOT_URL correctly, otherwise the web may not work correctly.
- #undef SYSLOG_DBG will discard first four syslog messages
- race condition in os_timer_setfn/os_timer_arm lead to
1226> Fatal exception 9(LoadStoreAlignmentCause):
1227> epc1=0x4010076e, epc2=0x00000000, epc3=0x00000000, excvaddr=0x00000003, depc=0x00000000
- potential loop in syslog_init - fixed by additional state SYSLOG_INITDONE
- changed defaults for Flashconfig
- SNTP-Server: empty
- Syslog-Server: empty
- hostname: reverted to esp-link
- heavy cleanup in syslog.c
- removed debug messages
- add local syslog_compose function
syslog UDP messages are send via
syslog(uint8_t facility, uint8_t severity, const char tag[], const char message[], ...);
the syslog function queues any msg on system heap. If heap reaches a minimum size (8kB),
syslog stops queuing.
As soon as Wifi connectivity is available, syslog will send out all queued messages.
Queuing will be reenabled after all pending messages are sent.