diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-24 16:45:16 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-24 16:45:16 +0200 |
| commit | 4d3110c0080e1ef374b264a7a24522dd2aac3c53 (patch) | |
| tree | 6aace1bc7637082c7b7a6dda54d82980b3fde47b | |
| parent | 1da59a066a738eac795c0734e8afbae286b31590 (diff) | |
| download | bridge-4d3110c0080e1ef374b264a7a24522dd2aac3c53.tar.gz bridge-4d3110c0080e1ef374b264a7a24522dd2aac3c53.zip | |
remove useless debug statements
| -rw-r--r-- | server.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -159,7 +159,6 @@ function analyzeQueueForCategory(category) { // API requires maximum time interval of 4w // return [payload, payload, …] with fixed createdAt function splitGrabs(payload, start, end) { - console.log(payload, start, end); let part_start = start, part_end = start, payloads = []; @@ -578,7 +577,7 @@ async function setKey(db, config, key, value) { app.post("/api/match/:region/update", async (req, res) => { const region = req.params.region; if (TOURNAMENT_REGIONS.indexOf(region) == -1) { - console.error("called with unsupported region", { region: region }); + logger.error("called with unsupported region", { region: region }); res.sendStatus(404); return; } |
