Console
The Console tab shows everything your game server prints — startup messages, player joins, errors — as it happens. It keeps the last 2,000 lines on screen; older output scrolls away.
Run a command
Section titled “Run a command”Type into the input at the bottom and press Enter. Commands run as the server itself, exactly as if you typed them into the server’s own terminal:
- Minecraft:
say Hello,whitelist add Notch,tps - Source games:
status,changelevel de_dust2
Read a crash
Section titled “Read a crash”When a server will not stay up:
- Press Start and watch the first 50 lines — the real error is usually near the top, not at the end.
- Look for
ERROR,Exception,missing, orport already in use. - Common causes and fixes live in server issues.
Console vs. logs
Section titled “Console vs. logs”The console is a live view, not permanent storage. For history, use the
Activity tab (who did what) or download log files from the Files tab
(usually under logs/). Realtime integrations should use the
event streams API rather than scraping the console.
Related
Section titled “Related”- Power controls
- Tasks — run commands on a schedule
