Fixed misleading emailAnalytics.fetchLatest debug statement

This commit is contained in:
Kevin Ansfield 2020-12-01 10:16:41 +00:00
parent a84ec49854
commit 2b747e6b53

View File

@ -45,7 +45,7 @@ class EmailAnalyticsService {
const emailCount = await this.db.knex('emails').count();
if (emailCount <= 0) {
debug('fetchAll: skipping - no emails to track');
debug('fetchLatest: skipping - no emails to track');
return result;
}