Real-time logs for your apps
Register an application, send log entries via a simple HTTP call, and watch them stream live in your browser — from any language or platform.
📡
Live log stream
Logs appear in your browser in real time. Pause, resume, and scroll through history without missing a line.
🔗
Simple HTTP API
Send a POST request with your token and message. Works from PHP, JavaScript, mobile apps, or any HTTP client.
🔒
Per-app tokens
Each application gets its own token. Share log access with teammates, and revoke it at any time.
One line to send a log
Use any HTTP client. Here's a simple shell example:
curl -X POST https://logmycode.com/ws \ -d "lmctoken=USERTOKEN-APPTOKEN" \ -d "localdate=$(date '+%Y-%m-%d %H:%M:%S')" \ -d "logtext=Hello from my app"