diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-15 04:11:15 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-15 04:11:15 +0200 |
commit | 853dc1efdce3cb5ce24a918bdca0b12218591976 (patch) | |
tree | ba2221b2e0ddee22e2f5da87364c83ebf9f2763f /skate | |
parent | e88d2abd47d545f6bb87b3de75f7ad6d2dbfc5e4 (diff) | |
download | refcat-853dc1efdce3cb5ce24a918bdca0b12218591976.tar.gz refcat-853dc1efdce3cb5ce24a918bdca0b12218591976.zip |
zippy: extend logging
Diffstat (limited to 'skate')
-rw-r--r-- | skate/zippy.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skate/zippy.go b/skate/zippy.go index 6339325..c318973 100644 --- a/skate/zippy.go +++ b/skate/zippy.go @@ -372,8 +372,8 @@ func matchedRefsExtend(matched []*BiblioRef, refs []*Ref, stats *statsAugment) [ for _, r := range refs { if s.Contains(r.Key + fmt.Sprintf("%d", r.Index)) { stats.skipDuplicatedRef++ - log.Printf("skip-dup-ref [%d]: %v, %v", - stats.skipDuplicatedRef, r.Key, fmt.Sprintf("%d", r.Index)) + log.Printf("skip-dup-ref [%d]: re=%v, title=%s, key=%v, index=%v", + stats.skipDuplicatedRef, r.ReleaseIdent, r.Biblio.Title, r.Key, fmt.Sprintf("%d", r.Index)) continue } var bref BiblioRef |