Lidarr/NzbDrone/Providers/DebuggerProvider.cs

46 lines
1.1 KiB
C#
Raw Normal View History

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