mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-25 01:06:30 +00:00
added logging to nzbdrone runner.
This commit is contained in:
parent
4a41ce7f29
commit
bfa817922e
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,6 @@ namespace NzbDrone.Integration.Test
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
|
|
||||||
_nzbDroneProcess.Refresh();
|
_nzbDroneProcess.Refresh();
|
||||||
|
|
||||||
if (_nzbDroneProcess.HasExited)
|
if (_nzbDroneProcess.HasExited)
|
||||||
|
@ -70,6 +69,8 @@ namespace NzbDrone.Integration.Test
|
||||||
|
|
||||||
private void OnOutputDataReceived(string data)
|
private void OnOutputDataReceived(string data)
|
||||||
{
|
{
|
||||||
|
Console.WriteLine(data);
|
||||||
|
|
||||||
if (data.Contains("Press enter to exit"))
|
if (data.Contains("Press enter to exit"))
|
||||||
{
|
{
|
||||||
_nzbDroneProcess.StandardInput.WriteLine(" ");
|
_nzbDroneProcess.StandardInput.WriteLine(" ");
|
||||||
|
|
Loading…
Reference in a new issue