aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Web/Controllers
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-09-02 14:44:09 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-09-02 14:44:09 +0300
commitc45e816908048bb7b621759c0b0f1391d7d85b0b (patch)
treeea6758624f5d4338960fa0581fece1b7ddfe11db /Software/Visual_Studio/Tango.Web/Controllers
parent565afd35baab8b2846ebc80a6802a375b3fd876e (diff)
downloadTango-c45e816908048bb7b621759c0b0f1391d7d85b0b.tar.gz
Tango-c45e816908048bb7b621759c0b0f1391d7d85b0b.zip
Fixed error info on MachineService errors.
Some work on TFS PPC client logging.
Diffstat (limited to 'Software/Visual_Studio/Tango.Web/Controllers')
-rw-r--r--Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs b/Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs
index 5d96a7249..28637d97c 100644
--- a/Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs
+++ b/Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs
@@ -69,7 +69,7 @@ namespace Tango.Web.Controllers
code = HttpStatusCode.Unauthorized;
}
- var httpException = new HttpResponseException(Request.CreateErrorResponse(code, ex));
+ var httpException = new HttpResponseException(Request.CreateErrorResponse(code, ex.FlattenMessage()));
#if DEBUG
throw httpException;