aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-27 00:00:36 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-27 00:00:36 +0200
commita3d2087107312c1816adbc3d25882d36eb5b7d9d (patch)
tree6e4e9d6cdf086b43a82e9b05ae02625ae72657db
parent8c265d2a218493669fd74ecc7510de6a0f4545fc (diff)
downloadfeed2imap-go-a3d2087107312c1816adbc3d25882d36eb5b7d9d.tar.gz
feed2imap-go-a3d2087107312c1816adbc3d25882d36eb5b7d9d.tar.bz2
feed2imap-go-a3d2087107312c1816adbc3d25882d36eb5b7d9d.zip
Fix messages
-rw-r--r--internal/feed/cache_v1.go4
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