fixes #28 - Better info error when adding same path to media collection

This commit is contained in:
LukePulverenti
2013-03-11 22:38:27 -04:00
parent df757416b7
commit dad41a224f
2 changed files with 19 additions and 3 deletions

View File

@@ -142,9 +142,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
DefaultRedirectPath = DefaultRedirectPath,
// Tell SS to bubble exceptions up to here
WriteErrorsToResponse = false,
DebugMode = true
WriteErrorsToResponse = false
});
container.Adapter = new ContainerAdapter(ApplicationHost);
@@ -153,6 +151,21 @@ namespace MediaBrowser.Server.Implementations.HttpServer
Plugins.Add(new CorsFeature());
ServiceStack.Logging.LogManager.LogFactory = new NLogFactory();
ResponseFilters.Add((req, res, dto) =>
{
var exception = dto as Exception;
if (exception != null)
{
_logger.ErrorException("Error processing request", exception);
if (!string.IsNullOrEmpty(exception.Message))
{
res.AddHeader("X-Application-Error-Code", exception.Message);
}
}
});
}
/// <summary>