Skip to content

Commit

Permalink
add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Aug 1, 2024
1 parent 429c6cf commit bbfd89f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/services/application/checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,7 @@ async function checkAppRunning(url, appName) {
}

function applicationWithChecks(app) {
log.info(`Checking if ${app.name} have specific checks.`);
if (generalWebsiteApps.includes(app.name)) {
return true;
} else if (app.name === 'explorer') {
Expand All @@ -760,8 +761,6 @@ function applicationWithChecks(app) {
return true;
} else if (app.name.toLowerCase().includes('bittensor')) {
return true;
} else if (gSyncthing) {
return true;
} else {
const matchIndex = ethersList.findIndex((eApp) => app.name.startsWith(eApp.name));
if (matchIndex > -1) {
Expand Down

0 comments on commit bbfd89f

Please sign in to comment.