removed filename from exception reports.

pull/24/head
Keivan Beigi 11 years ago
parent 53c32fbe10
commit c93548c9f6

@ -68,7 +68,7 @@ namespace Exceptron.Client
if (string.IsNullOrEmpty(exceptronConfiguration.ApiKey)) if (string.IsNullOrEmpty(exceptronConfiguration.ApiKey))
throw new ArgumentException("An API Key was not provided"); throw new ArgumentException("An API Key was not provided");
Configuration = exceptronConfiguration; Configuration = exceptronConfiguration;
RestClient = new RestClient(); RestClient = new RestClient();
@ -255,7 +255,7 @@ namespace Exceptron.Client
var currentFrame = new Frame var currentFrame = new Frame
{ {
i = index, i = index,
fn = frame.GetFileName(), //fn = frame.GetFileName(),
ln = frame.GetFileLineNumber(), ln = frame.GetFileLineNumber(),
m = method.ToString(), m = method.ToString(),
}; };

@ -12,11 +12,6 @@ namespace Exceptron.Client.Message
/// </summary> /// </summary>
public int ln { get; set; } public int ln { get; set; }
/// <summary>
/// File name of the current frame
/// </summary>
public string fn { get; set; }
/// <summary> /// <summary>
/// Method name for current frame /// Method name for current frame
/// </summary> /// </summary>

Loading…
Cancel
Save