1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

added logging to nzbdrone runner.

This commit is contained in:
kay.one 2013-08-13 20:28:13 -07:00
parent 4a41ce7f29
commit bfa817922e

View File

@ -38,7 +38,6 @@ public void Start()
while (true)
{
_nzbDroneProcess.Refresh();
if (_nzbDroneProcess.HasExited)
@ -70,6 +69,8 @@ private void Start(string outputNzbdroneConsoleExe)
private void OnOutputDataReceived(string data)
{
Console.WriteLine(data);
if (data.Contains("Press enter to exit"))
{
_nzbDroneProcess.StandardInput.WriteLine(" ");