0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Fixed misleading emailAnalytics.fetchLatest debug statement

This commit is contained in:
Kevin Ansfield 2020-12-01 10:16:41 +00:00
parent d604f96a9c
commit db7fff0b2a

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;
}