Making sacrifices to the network gods...

Minecraft Log
Sharing & Analyzer

Share your Minecraft server logs with automatic highlighting of ERROR, WARN, INFO, DEBUG and FATAL. Shareable links ready for support.

Powered by Tick Hosting — Free & Premium Hosting

Need a Minecraft Server?

Free & premium hosting with 24/7 support

Get Started

Logs API

Integrate log sharing into your applications

Create Paste

Endpoint

POST https://mclogs.tickhosting.com/api/pastes

Body JSON

{
  "content": "...log lines...",
  "ttl_days": 15
}

Response

{
  "success": true,
  "uuid": "xxxxxxxx-xxxx",
  "url": "https://mclogs.tickhosting.com/p/uuid",
  "expires_at": "2025-08-29T10:20:30.000000Z",
  "meta": { "lines": 123, "levels": {"ERROR":1,"WARN":3,"INFO":40,"DEBUG":2} }
}

Deduplication: if identical content is posted before expiry the same UUID is reused.

Retrieve Paste

API Endpoint

GET https://mclogs.tickhosting.com/api/pastes/{uuid}

Web Page

GET https://mclogs.tickhosting.com/p/{uuid}

Sample Response

{
  "success": true,
  "uuid": "...",
  "content": "...raw log...",
  "expires_at": "2025-08-29T10:20:30.000000Z",
  "meta": {"lines":123,"levels":{"ERROR":1,"WARN":3,"INFO":40,"DEBUG":2}},
  "colorized": "<span class=\"log-error\">ERROR</span> ..."
}

The colorized field includes HTML with level highlighting.

Security

Logs expire automatically (default 15 days). No data retained after expiry.

Performance

SHA-256 hash prevents duplicates and reduces storage. Level analysis is O(n).

Integration

Send latest.log by reading the file and POSTing the content.