Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into MTP-236
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorg committed May 27, 2015
2 parents a7b4497 + 61ee10a commit 971a9c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mindtouch.core/DreamHostService.cs
Expand Up @@ -1350,11 +1350,11 @@ private sealed class DreamActivityDescription : IDreamActivityDescription {
// check if any feature was found
if((features == null) || (features.Count == 0)) {
string msg = verb + " URI: " + uri.ToString(false) + " LOCAL: " + localFeatureUri.ToString(false) + " PUBLIC: " + publicUri + " TRANSPORT: " + transport;
_log.WarnMethodCall("ProcessRequest: feature not found", msg);
_log.InfoMethodCall("ProcessRequest: feature not found", msg);
result = DreamMessage.NotFound("resource not found");
} else {
string msg = verb + " " + uri.ToString(false);
_log.WarnMethodCall("ProcessRequest: method not allowed", msg);
_log.InfoMethodCall("ProcessRequest: method not allowed", msg);
List<string> methods = new List<string>();
foreach(DreamFeature entry in features) {
if(!methods.Contains(entry.Verb)) {
Expand Down

0 comments on commit 971a9c3

Please sign in to comment.