Skip to content

Commit

Permalink
fix: suppress log for <#60>
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Aug 26, 2020
1 parent 6d5f780 commit f9bae61
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/controllers/api/v1/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,14 @@ async function settings(ctx) {
hasVirusProtection = domain.has_virus_protection;
} else {
ctx.logger.warn(ctx.translateError('DOMAIN_DOES_NOT_EXIST'));
/*
// TODO: <https://github.com/forwardemail/forwardemail.net/issues/60>
ctx.logger.error(
new Error(
`${ctx.query.domain} has forward-email-site-verification=${verifications[0]} which is no longer valid and needs fixed`
)
);
*/
}
} else if (ports.length > 0) {
if (ports.length > 1)
Expand Down

0 comments on commit f9bae61

Please sign in to comment.