diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f3fa36..d25ba15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) + +## Unreleased +### Added +### Changed +- Made number of files to download a non-verbose default printout. [33](https://github.com/podaac/data-subscriber/issues/33) +### Deprecated +### Removed +### Fixed +### Security + ## [1.7.0] ### Added - Added ability to call a process on downlaoded files. [Thank to Joe Sapp](https://github.com/sappjw). diff --git a/subscriber/podaac_data_subscriber.py b/subscriber/podaac_data_subscriber.py index 7817ab2..cf2e3b9 100755 --- a/subscriber/podaac_data_subscriber.py +++ b/subscriber/podaac_data_subscriber.py @@ -401,8 +401,11 @@ def run(): downloads = filtered_downloads + # https://github.com/podaac/data-subscriber/issues/33 + # Make this a non-verbose message + #if args.verbose: + print("Found " + str(len(downloads)) + " total files to download") if args.verbose: - print("Found " + str(len(downloads)) + " total files to download") print("Downloading files with extensions: " + str(extensions))