Skip to content

Commit

Permalink
log removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Dec 13, 2024
1 parent 8964876 commit 1c27d67
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tybotRoute/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ router.post('/block/:project_id/:bot_id/:block_id', async (req, res) => {

async function startApp(settings, completionCallback) {
console.log("Starting Tilebot...");
console.log("Starting Tilebot with Settings:", settings);
// console.log("Starting Tilebot with Settings:", settings);
if (settings.bots) { // static bots data source
staticBots = settings.bots;
}
Expand All @@ -628,9 +628,6 @@ async function startApp(settings, completionCallback) {
}

if (settings.REDIS_HOST && settings.REDIS_PORT) {
console.log("startApp REDIS_HOST: ", settings.REDIS_HOST)
console.log("startApp REDIS_PORT: ", settings.REDIS_PORT)
console.log("startApp REDIS_PASSWORD: ", settings.REDIS_PASSWORD)
tdcache = new TdCache({
host: settings.REDIS_HOST,
port: settings.REDIS_PORT,
Expand Down Expand Up @@ -705,7 +702,6 @@ async function startApp(settings, completionCallback) {
}

async function connectRedis() {
console.log("connectRedis tdcache: ", tdcache)
if (tdcache) {
try {
console.log("(Tilebot) Connecting Redis...");
Expand Down

0 comments on commit 1c27d67

Please sign in to comment.