Add debug logging.

Could be helpful when troubleshooting issues with various providers if
the user is able to turn on debug logging. The most critical logging
provided is the request and responses sent and received from the oauth
servers.
This commit is contained in:
Glenn Griffin
2019-12-02 10:56:13 -08:00
parent 6817fce0bc
commit 5c0334ee6f
6 changed files with 68 additions and 16 deletions

View File

@@ -227,7 +227,7 @@ impl<'de> Deserialize<'de> for JSONTokens {
}
// Instantiate our Visitor and ask the Deserializer to drive
// it over the input data, resulting in an instance of MyMap.
// it over the input data.
deserializer.deserialize_seq(V)
}
}