fix: set tracing instrumentation level to Error
This commit is contained in:
parent
904f8215d8
commit
9da3b25be2
16 changed files with 35 additions and 35 deletions
|
|
@ -632,7 +632,7 @@ impl DownloadQuery {
|
|||
///
|
||||
/// If no download path is set, the video is downloaded to the current directory
|
||||
/// with a filename created by this template: `{track} {title} [{id}]`.
|
||||
#[tracing::instrument(skip(self), fields(id = self.video.id))]
|
||||
#[tracing::instrument(skip(self), level="error", fields(id = self.video.id))]
|
||||
pub async fn download(&self) -> Result<DownloadResult> {
|
||||
let mut last_err = None;
|
||||
|
||||
|
|
|
|||
Reference in a new issue