Log a debug message when importing default feeds.

This commit is contained in:
Brent Simmons 2017-11-25 16:16:19 -08:00
parent 17662ef337
commit 4ddf886012
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ struct DefaultFeedsImporter {
static func importIfNeeded(_ firstRun: Bool, account: Account) {
if shouldImportDefaultFeeds(firstRun) {
appDelegate.logDebugMessage("Importing default feeds.")
FeedsImporter.importFeeds(defaultFeeds(), account: account)
}
}