diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 20:21:27 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 20:21:27 +0200 |
commit | 85943861ea66ee5eaf40aa2c405892636b59ce71 (patch) | |
tree | 765b376c7de957f1be59a1f07bdba2e62e3e54be /src/main.rs | |
parent | fix(package): Actually provide the blake3 library to the python interpreter (diff) | |
download | yt-85943861ea66ee5eaf40aa2c405892636b59ce71.tar.gz yt-85943861ea66ee5eaf40aa2c405892636b59ce71.zip |
fix(update): Propagate the logging options to the `update_raw.py` script
Diffstat (limited to '')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ebbb45f..53cfc9e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -95,7 +95,7 @@ async fn main() -> Result<()> { } } - update::update(&app, max_backlog, subscriptions, concurrent_processes).await?; + update::update(&app, max_backlog, subscriptions, args.verbosity).await?; } Command::Subscriptions { cmd } => match cmd { |