mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
removed filename from exception reports.
This commit is contained in:
parent
53c32fbe10
commit
c93548c9f6
@ -68,7 +68,7 @@ public ExceptronClient(ExceptronConfiguration exceptronConfiguration, Version ap
|
||||
|
||||
if (string.IsNullOrEmpty(exceptronConfiguration.ApiKey))
|
||||
throw new ArgumentException("An API Key was not provided");
|
||||
|
||||
|
||||
Configuration = exceptronConfiguration;
|
||||
|
||||
RestClient = new RestClient();
|
||||
@ -255,7 +255,7 @@ internal static List<Frame> ConvertToFrames(Exception exception)
|
||||
var currentFrame = new Frame
|
||||
{
|
||||
i = index,
|
||||
fn = frame.GetFileName(),
|
||||
//fn = frame.GetFileName(),
|
||||
ln = frame.GetFileLineNumber(),
|
||||
m = method.ToString(),
|
||||
};
|
||||
|
@ -12,11 +12,6 @@ internal class Frame
|
||||
/// </summary>
|
||||
public int ln { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// File name of the current frame
|
||||
/// </summary>
|
||||
public string fn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Method name for current frame
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user