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 ///