diff --git a/IISMainHandler/handlers/WrongUrlHandler.cs b/IISMainHandler/handlers/WrongUrlHandler.cs index 4336a8e..68eb997 100644 --- a/IISMainHandler/handlers/WrongUrlHandler.cs +++ b/IISMainHandler/handlers/WrongUrlHandler.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using System.Web; using System.Xml.Linq; +using FLocal.Core; namespace FLocal.IISHandler.handlers { class WrongUrlHandler : AbstractGetHandler { @@ -15,6 +16,7 @@ namespace FLocal.IISHandler.handlers { } protected override IEnumerable getSpecificData(WebContext context) { + context.LogError(new WrongUrlException()); return new XElement[] { new XElement("path", context.httprequest.Path) };