1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 02:52:41 +01:00
Radarr/NzbDrone/Providers/DebuggerProvider.cs

47 lines
1.1 KiB
C#
Raw Normal View History

2011-10-07 05:37:41 +02:00
using System;
using System.Diagnostics;
using System.Threading;
using NLog;
namespace NzbDrone.Providers
{
2011-11-26 03:06:40 +01:00
[DebuggerStepThroughAttribute]
2011-10-07 08:36:04 +02:00
public class DebuggerProvider
2011-10-07 05:37:41 +02:00
{
2011-10-07 08:43:35 +02:00
private static readonly Logger Logger = LogManager.GetLogger("Host.DebuggerProvider");
2011-10-07 05:37:41 +02:00
2011-10-07 08:36:04 +02:00
public virtual void Attach()
2011-10-07 05:37:41 +02:00
{
#if DEBUG
if (Debugger.IsAttached)
{
Logger.Info("Trying to attach to debugger");
2011-10-07 08:57:43 +02:00
int count = 0;
2011-10-07 05:37:41 +02:00
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
}
}
2011-10-07 08:57:43 +02:00
}