Skip to content

Commit 0f1bdec

Browse files
authored
Merge pull request #75 from hug-dev/info-to-debug
Move a log message from info to debug
2 parents 49f14f2 + ef3e8d4 commit 0f1bdec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/basic_client.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use super::operation_client::OperationClient;
55
use crate::auth::Authentication;
66
use crate::error::{ClientErrorKind, Error, Result};
7-
use log::{info, warn};
7+
use log::{debug, warn};
88
use parsec_interface::operations::delete_client::Operation as DeleteClient;
99
use parsec_interface::operations::list_authenticators::{
1010
AuthenticatorInfo, Operation as ListAuthenticators,
@@ -208,7 +208,7 @@ impl BasicClient {
208208
};
209209
client.set_default_provider()?;
210210
client.set_default_auth(app_name)?;
211-
info!("Parsec BasicClient created with implicit provider \"{}\" and authentication data \"{:?}\"", client.implicit_provider(), client.auth_data());
211+
debug!("Parsec BasicClient created with implicit provider \"{}\" and authentication data \"{:?}\"", client.implicit_provider(), client.auth_data());
212212
Ok(client)
213213
}
214214

0 commit comments

Comments
 (0)