Skip to content

Commit f9e1cda

Browse files
authored
Merge pull request #86 from R2NorthstarTools/Test-New-Log-Details
Test new log details
2 parents f363eac + 4b0bd50 commit f9e1cda

29 files changed

+1548
-886
lines changed
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

VTOL_2.0.0/.vs/VTOL/v17/.futdcache.v2

0 Bytes
Binary file not shown.

VTOL_2.0.0/MainWindow.xaml.cs

+43-19
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,17 @@ public string ProductVersion
136136
return file.Substring(0, file.IndexOf("+") + 1).Replace("+", "");
137137
}
138138
catch (Exception ex)
139-
{
140-
Log.Error(ex, $"A crash happened at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");
141-
142-
}
139+
{
140+
var st = new System.Diagnostics.StackTrace(ex, true);
141+
var frame = st.GetFrame(0);
142+
var line = frame.GetFileLineNumber();
143+
var method = frame.GetMethod().Name;
144+
var className = frame.GetMethod().DeclaringType.Name;
145+
var variables = ""; // You would need to add logic to capture variable values
146+
147+
Log.Fatal(ex, $"An error occurred at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}" +
148+
$" Line Number: {line}, Method Name: {method}, Class Name: {className}, Variables: {variables}" +
149+
$"{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");}
143150
return "1.0.0";
144151

145152
}
@@ -758,12 +765,17 @@ private void Log_Folder_warning_Click(object sender, RoutedEventArgs e)
758765

759766
}
760767
catch (Exception ex)
761-
{
768+
{
769+
var st = new System.Diagnostics.StackTrace(ex, true);
770+
var frame = st.GetFrame(0);
771+
var line = frame.GetFileLineNumber();
772+
var method = frame.GetMethod().Name;
773+
var className = frame.GetMethod().DeclaringType.Name;
774+
var variables = ""; // You would need to add logic to capture variable values
762775

763-
Log.Error(ex, $"A crash happened at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");
764-
765-
766-
}
776+
Log.Fatal(ex, $"An error occurred at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}" +
777+
$" Line Number: {line}, Method Name: {method}, Class Name: {className}, Variables: {variables}" +
778+
$"{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");}
767779
}
768780

769781
private void Main_Win_Control_GotFocus(object sender, RoutedEventArgs e)
@@ -842,9 +854,17 @@ private void Changelog_Click(object sender, RoutedEventArgs e)
842854

843855

844856
catch (Exception ex)
845-
{
846-
Log.Error(ex, $"A crash happened at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");
847-
}
857+
{
858+
var st = new System.Diagnostics.StackTrace(ex, true);
859+
var frame = st.GetFrame(0);
860+
var line = frame.GetFileLineNumber();
861+
var method = frame.GetMethod().Name;
862+
var className = frame.GetMethod().DeclaringType.Name;
863+
var variables = ""; // You would need to add logic to capture variable values
864+
865+
Log.Fatal(ex, $"An error occurred at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}" +
866+
$" Line Number: {line}, Method Name: {method}, Class Name: {className}, Variables: {variables}" +
867+
$"{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");}
848868
}
849869

850870
private void Troubleshoot_Click(object sender, RoutedEventArgs e)
@@ -1053,13 +1073,17 @@ private void Main_Win_Control_StateChanged(object sender, EventArgs e)
10531073
}
10541074

10551075
catch (Exception ex)
1056-
{
1057-
Log.Error(ex, $"A crash happened at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");
1058-
1059-
1060-
1061-
1062-
}
1076+
{
1077+
var st = new System.Diagnostics.StackTrace(ex, true);
1078+
var frame = st.GetFrame(0);
1079+
var line = frame.GetFileLineNumber();
1080+
var method = frame.GetMethod().Name;
1081+
var className = frame.GetMethod().DeclaringType.Name;
1082+
var variables = ""; // You would need to add logic to capture variable values
1083+
1084+
Log.Fatal(ex, $"An error occurred at {DateTime.Now.ToString("yyyy - MM - dd HH - mm - ss.ff", CultureInfo.InvariantCulture)}" +
1085+
$" Line Number: {line}, Method Name: {method}, Class Name: {className}, Variables: {variables}" +
1086+
$"{Environment.NewLine}{ex.InnerException}{Environment.NewLine}");}
10631087

10641088

10651089
}

0 commit comments

Comments
 (0)