diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/feed/cache_v1.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/feed/cache_v1.go b/internal/feed/cache_v1.go index 0e43eab..37a4773 100644 --- a/internal/feed/cache_v1.go +++ b/internal/feed/cache_v1.go @@ -113,12 +113,12 @@ func (cache *v1Cache) findItem(feed *Feed) CachedFeed { changed := false for otherId, id = range cache.Ids { if otherId.Name == fDescr.Name { - log.Warnf("Feed %s seems to have changed URLs: newCache '%s', old '%s'. Updating.", + log.Warnf("Feed %s seems to have changed URLs: new '%s', old '%s'. Updating.", fDescr.Name, fDescr.Url, otherId.Url) changed = true break } else if otherId.Url == fDescr.Url { - log.Warnf("Feed with URL '%s' seems to have changed its name: newCache '%s', old '%s'. Updating", + log.Warnf("Feed with URL '%s' seems to have changed its name: new '%s', old '%s'. Updating", fDescr.Url, fDescr.Name, otherId.Name) changed = true break |