reduce the log level of some info!

This commit is contained in:
Tamo 2021-06-23 10:41:55 +02:00
parent a2368db154
commit b4fd4212ad
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
6 changed files with 17 additions and 17 deletions

View file

@ -3,7 +3,7 @@ use std::path::{Path, PathBuf};
use anyhow::Context;
use chrono::{DateTime, Utc};
use log::{info, warn};
use log::{info, trace, warn};
#[cfg(test)]
use mockall::automock;
use serde::{Deserialize, Serialize};
@ -164,7 +164,7 @@ where
P: UpdateActorHandle + Send + Sync + Clone + 'static,
{
async fn run(self) -> Result<()> {
info!("Performing dump.");
trace!("Performing dump.");
create_dir_all(&self.path).await?;