We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f036c5e commit f52696fCopy full SHA for f52696f
core/src/cache.rs
@@ -328,6 +328,7 @@ impl Cache {
328
if let Some(location) = &self.credentials_location {
329
let result = File::create(location).and_then(|mut file| {
330
let data = serde_json::to_string(cred)?;
331
+ debug!("Saving credentials at {location:?}");
332
write!(file, "{data}")
333
});
334
core/src/connection/mod.rs
@@ -135,6 +135,7 @@ pub async fn authenticate(
135
let cmd = PacketType::Login;
136
let data = packet.write_to_bytes()?;
137
138
+ debug!("Authenticating with AP using {:?}", credentials.auth_type);
139
transport.send((cmd as u8, data)).await?;
140
let (cmd, data) = transport
141
.next()
0 commit comments