forked from kemitix/git-next
chore: reduce logging to debug
This commit is contained in:
parent
223dd426c6
commit
9df732ce97
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
use kxio::network;
|
use kxio::network;
|
||||||
use secrecy::ExposeSecret;
|
use secrecy::ExposeSecret;
|
||||||
use tracing::{error, info, warn};
|
use tracing::{debug, error, warn};
|
||||||
|
|
||||||
use crate::server;
|
use crate::server;
|
||||||
use crate::server::{actors::repo::status::Status, config::BranchName, forge};
|
use crate::server::{actors::repo::status::Status, config::BranchName, forge};
|
||||||
|
@ -31,7 +31,7 @@ pub async fn get_commit_histories(
|
||||||
net,
|
net,
|
||||||
)
|
)
|
||||||
.await)?;
|
.await)?;
|
||||||
info!(
|
debug!(
|
||||||
main = main.len(),
|
main = main.len(),
|
||||||
next = next.len(),
|
next = next.len(),
|
||||||
dev = dev.len(),
|
dev = dev.len(),
|
||||||
|
|
Loading…
Reference in a new issue