diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-02 14:44:09 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-02 14:44:09 +0300 |
| commit | c45e816908048bb7b621759c0b0f1391d7d85b0b (patch) | |
| tree | ea6758624f5d4338960fa0581fece1b7ddfe11db /Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs | |
| parent | 565afd35baab8b2846ebc80a6802a375b3fd876e (diff) | |
| download | Tango-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/TangoController.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Web/Controllers/TangoController.cs | 2 |
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; |
