Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-17 02:07:25 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-17 02:07:25 +0300
commit7b7b043985365e370bb58333b9bf1ded7e44fe71 (patch)
tree988acc0fc878faad5c73d3ff5e7955d550f85560 /Clovershell
parentfe74b3f3b5f7d0fa4d21e1adf4163ffaa7fe36ac (diff)
Better progress display
Diffstat (limited to 'Clovershell')
-rw-r--r--Clovershell/ClovershellConnection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Clovershell/ClovershellConnection.cs b/Clovershell/ClovershellConnection.cs
index 9385513a..acdeae75 100644
--- a/Clovershell/ClovershellConnection.cs
+++ b/Clovershell/ClovershellConnection.cs
@@ -487,7 +487,7 @@ namespace com.clusterrr.clovershell
if (c == null) return;
if (c.stdout != null)
c.stdout.Write(data, pos, len);
- //Debug.WriteLine("stdout: " + Encoding.UTF8.GetString(data, pos, len));
+ Debug.WriteLine("stdout: " + Encoding.UTF8.GetString(data, pos, len));
if (len == 0)
c.stdoutFinished = true;
}