Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 02523b8

Browse files
committed
Only log the ThreadAbortException if we are tracing.
1 parent d79e8c4 commit 02523b8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
//2443
1+
//2444
22
//
33
// This code was generated by a tool. Any changes made manually will be lost
44
// the next time this code is regenerated.
55
//
66

77
using System.Reflection;
88

9-
[assembly: AssemblyFileVersion("1.13.2.2443")]
10-
[assembly: AssemblyVersion("1.13.2.2443")]
9+
[assembly: AssemblyFileVersion("1.13.2.2444")]
10+
[assembly: AssemblyVersion("1.13.2.2444")]

EssentialsPlugin/Essentials.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,6 +1037,10 @@ private void PluginProcessing( )
10371037
*/
10381038

10391039
}
1040+
catch ( ThreadAbortException ex )
1041+
{
1042+
Log.Trace( ex );
1043+
}
10401044
catch ( Exception ex )
10411045
{
10421046
Log.Error( ex );

0 commit comments

Comments
 (0)