Skip to content
/ tee-log Public

Send Serial logging (also) to telnet, syslog, MQTT or a browser. To ease networked Arduino debugging.

License

Notifications You must be signed in to change notification settings

dirkx/tee-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Tee Logger

A logger that acts as a fan-out or tee; i.e. lets you sent the logs to the Serial port, but also to (for example) SYSLOG, a local server you can 'telnet' into or make it scroll in a browser window.

Example:

#include <Log.h> TelnetSerialStream telnetSerialStream = TelnetSerialStream();

void setup() {

Serial.begin(115200); Serial.println("Started (this will only show up on serial)");

... start wifi network ...

Log.addPrintStream(std::make_shared<TelnetSerialStream>(telnetSerialStream)); Log.begin();

Log.println("Hello World");

With this setup; the output "Hello World" is visible both on the Serial port; as well as on a local telnet server. So doing a telnet to the ESP32; will show this:

$ telnet 10.0.0.2 Connected to the Serial port of 10.0.0.2 Hello World

where 10.0.0.2 is the IP address of the ESP32 board. Likewise you can add a logger that sends the logging output to a syslog server; to MQTT or to a webserver. In that case you can simply open a webbrowser and connect to http://10.0.0.2 (i.e. to the IP address of the EPS32) and see the output scroll.

Note that you can still stream to the indivudal loggers; e.g. in above example

telnetSerialStream.println("Telnet only");

works too. Or see the Serial1/Serial2 example.

It is used at the https://makerspaceleiden.nl/ for its door access: https://github.com/makerspaceleiden.

About

Send Serial logging (also) to telnet, syslog, MQTT or a browser. To ease networked Arduino debugging.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages