1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00

Minor log fixes

This commit is contained in:
Maksym Pavlenko
2020-04-22 18:56:19 -07:00
parent 9f4f985fdf
commit 8415f6f644
2 changed files with 4 additions and 5 deletions

View File

@@ -143,10 +143,10 @@ func (u *Updater) downloadEpisodes(ctx context.Context, feedConfig *config.Feed)
if feedConfig.Filters.Title != "" {
matched, err := regexp.MatchString(feedConfig.Filters.Title, episode.Title)
if err != nil {
log.Warnf("Pattern '%s' is not a valid filter for %s Title", feedConfig.Filters.Title, feedConfig.ID)
log.Warnf("pattern %q is not a valid filter for %q Title", feedConfig.Filters.Title, feedConfig.ID)
} else {
if !matched {
log.Infof("Skipping '%s' due to lack of match with '%s'", episode.Title, feedConfig.Filters.Title)
log.Infof("skipping %q due to lack of match with %q", episode.Title, feedConfig.Filters.Title)
return nil
}
}
@@ -158,7 +158,7 @@ func (u *Updater) downloadEpisodes(ctx context.Context, feedConfig *config.Feed)
return nil
}
log.Debugf("adding %s (%q) to the list", episode.ID, episode.Title)
log.Debugf("adding %s (%q) to queue", episode.ID, episode.Title)
downloadList = append(downloadList, episode)
return nil
}); err != nil {
@@ -240,7 +240,6 @@ func (u *Updater) downloadEpisodes(ctx context.Context, feedConfig *config.Feed)
logger.WithError(err).Error("failed to copy file")
return err
}
logger.Debugf("copied %d bytes", fileSize)
// Update file status in database

View File

@@ -32,7 +32,7 @@ func NewLocal(rootDir string, hostname string) (*Local, error) {
func (l *Local) Create(ctx context.Context, ns string, fileName string, reader io.Reader) (int64, error) {
var (
logger = log.WithField("feed_id", ns).WithField("episode_id", fileName)
logger = log.WithField("episode_id", fileName)
feedDir = filepath.Join(l.rootDir, ns)
)