summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs
diff options
context:
space:
mode:
authorDavid Christiansen <coding@davedoes.net>2015-01-04 23:33:54 +0000
committerDavid Christiansen <coding@davedoes.net>2015-01-04 23:33:54 +0000
commit5f8a168cc7a17fbc24442be4ae6b518d95a12647 (patch)
tree9f0efbcd13ff54446a34bd229dfd495eed882b06 /src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs
parent7574924b2b5c810b7c00328f04f506f28da3f2ec (diff)
downloadDotNetOpenAuth-5f8a168cc7a17fbc24442be4ae6b518d95a12647.zip
DotNetOpenAuth-5f8a168cc7a17fbc24442be4ae6b518d95a12647.tar.gz
DotNetOpenAuth-5f8a168cc7a17fbc24442be4ae6b518d95a12647.tar.bz2
Closes #356, Closes #357, Closes #358
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs')
-rw-r--r--src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs
index 826401c..fcdc465 100644
--- a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs
+++ b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationRequest.cs
@@ -16,6 +16,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
using System.Threading.Tasks;
using System.Web;
using DotNetOpenAuth.Configuration;
+ using DotNetOpenAuth.Logging;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.ChannelElements;
using DotNetOpenAuth.OpenId.Messages;
@@ -338,7 +339,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
}
}
- if (Logger.OpenId.IsWarnEnabled && returnToUrl.Query != null) {
+ if (Logger.OpenId.IsWarnEnabled() && returnToUrl.Query != null) {
NameValueCollection returnToArgs = HttpUtility.ParseQueryString(returnToUrl.Query);
foreach (string key in returnToArgs) {
if (OpenIdRelyingParty.IsOpenIdSupportingParameter(key)) {
@@ -519,12 +520,12 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
if (anyFilteredOut) {
Logger.Yadis.DebugFormat("Some endpoints were filtered out. Total endpoints remaining: {0}", filteredEndpoints.Count);
}
- if (Logger.Yadis.IsDebugEnabled) {
+ if (Logger.Yadis.IsDebugEnabled()) {
if (MessagingUtilities.AreEquivalent(endpoints, endpointList)) {
Logger.Yadis.Debug("Filtering and sorting of endpoints did not affect the list.");
} else {
Logger.Yadis.Debug("After filtering and sorting service endpoints, this is the new prioritized list:");
- Logger.Yadis.Debug(Util.ToStringDeferred(filteredEndpoints, true));
+ Logger.Yadis.Debug(Util.ToStringDeferred(filteredEndpoints, true).ToString());
}
}