mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Diagnostics;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading;
|
|||
|
using NLog;
|
|||
|
|
|||
|
namespace NzbDrone.Providers
|
|||
|
{
|
|||
|
internal class DebuggerProvider
|
|||
|
{
|
|||
|
|
|||
|
private static readonly Logger Logger = LogManager.GetLogger("DebuggerProvider");
|
|||
|
|
|||
|
|
|||
|
internal virtual void Attach()
|
|||
|
{
|
|||
|
#if DEBUG
|
|||
|
if (Debugger.IsAttached)
|
|||
|
{
|
|||
|
Logger.Info("Trying to attach to debugger");
|
|||
|
|
|||
|
var count = 0;
|
|||
|
|
|||
|
while (true)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
ProcessAttacher.Attach();
|
|||
|
Logger.Info("Debugger Attached");
|
|||
|
return;
|
|||
|
}
|
|||
|
catch (Exception e)
|
|||
|
{
|
|||
|
count++;
|
|||
|
if (count > 20)
|
|||
|
{
|
|||
|
Logger.WarnException("Unable to attach to debugger", e);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
Thread.Sleep(100);
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|