From c93548c9f65ac0d1abfbf596f31934bfd6b0100d Mon Sep 17 00:00:00 2001 From: Keivan Beigi Date: Fri, 7 Jun 2013 12:04:18 -0700 Subject: [PATCH] removed filename from exception reports. --- Exceptron.Client/ExceptronClient.cs | 4 ++-- Exceptron.Client/Message/Frame.cs | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Exceptron.Client/ExceptronClient.cs b/Exceptron.Client/ExceptronClient.cs index dc67bee2e..eebf7366b 100644 --- a/Exceptron.Client/ExceptronClient.cs +++ b/Exceptron.Client/ExceptronClient.cs @@ -68,7 +68,7 @@ namespace Exceptron.Client if (string.IsNullOrEmpty(exceptronConfiguration.ApiKey)) throw new ArgumentException("An API Key was not provided"); - + Configuration = exceptronConfiguration; RestClient = new RestClient(); @@ -255,7 +255,7 @@ namespace Exceptron.Client var currentFrame = new Frame { i = index, - fn = frame.GetFileName(), + //fn = frame.GetFileName(), ln = frame.GetFileLineNumber(), m = method.ToString(), }; diff --git a/Exceptron.Client/Message/Frame.cs b/Exceptron.Client/Message/Frame.cs index 97dae0416..6fdc1a919 100644 --- a/Exceptron.Client/Message/Frame.cs +++ b/Exceptron.Client/Message/Frame.cs @@ -12,11 +12,6 @@ namespace Exceptron.Client.Message /// public int ln { get; set; } - /// - /// File name of the current frame - /// - public string fn { get; set; } - /// /// Method name for current frame ///