diff --git a/src/app/FakeLib/ProcessHelper.fs b/src/app/FakeLib/ProcessHelper.fs index 93fd1dc36df..f03fff97b91 100644 --- a/src/app/FakeLib/ProcessHelper.fs +++ b/src/app/FakeLib/ProcessHelper.fs @@ -424,7 +424,7 @@ let asyncShellExec (args : ExecParams) = proc.ErrorDataReceived.Add(fun e -> if e.Data <> null then traceError e.Data) proc.OutputDataReceived.Add(fun e -> - if e.Data <> null then trace e.Data) + if e.Data <> null then logfn e.Data) start proc proc.BeginOutputReadLine() proc.BeginErrorReadLine()