Skip to content

Commit

Permalink
fix: change all info level log to debug (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
fMeow committed Sep 15, 2020
1 parent cfa2ae9 commit cff0653
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
use std::{collections::HashMap, fmt::Debug, sync::Arc};

use http::header::{HeaderMap, AUTHORIZATION, SERVER};
use log::{info, trace};
use log::{debug, trace};
use maybe_async::maybe_async;
use serde::{Deserialize, Serialize};
use url::Url;
Expand Down Expand Up @@ -216,7 +216,7 @@ impl<C: ClientExt> GenericConnection<C, Normal> {
headers.insert(AUTHORIZATION, value.parse().unwrap());
}

info!("Established");
debug!("Established");
Ok(GenericConnection {
arango_url,
username,
Expand Down

0 comments on commit cff0653

Please sign in to comment.