Skip to content

Commit

Permalink
Cleaned console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
David Coder committed Feb 13, 2023
1 parent ec23ec2 commit 0bf514d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ app.get("/get-url/:timeframe/:symbol", (req, res) => {
endTimestamp: (latestTimestamp / 1000).toString(),
maxObservations: observationsData.length,
}

console.log(symbolObject.observations)

res.status(200).send(symbolObject)
} else {
Expand All @@ -110,7 +108,6 @@ app.get("/get-url/:timeframe/:symbol", (req, res) => {

// DOWNLOAD ALL FILENAMES AND CLASSIFY PAIRS ACCORDING TO QUOTE TOKEN
app.get("/get-symbols/:timeframe/", (req, res) => {
console.log('symbols!', req.params.timeframe)
const symbols = []

Pair.find({})
Expand All @@ -123,8 +120,6 @@ app.get("/get-symbols/:timeframe/", (req, res) => {
}
})

console.log(symbols)

res.status(200).send(symbols);
})

Expand Down

0 comments on commit 0bf514d

Please sign in to comment.