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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2014-06-21 12:21:43 +0400
committerPJ Beaman <pj@xamarin.com>2014-06-24 19:42:26 +0400
commit502feab873a4303a63d4435a49b7a58adba9f46f (patch)
treebfe6eefa01f25f1fefc9ecde4101fbe27b718324
parent87793ceb24b283c05d9155590efd75428fb4a422 (diff)
[Debugger] Workaround for Bug 20211
On running iOS samples in Release mode in XS, we are getting application output in red color in "Application Output" pad.
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Components/LogView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Components/LogView.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Components/LogView.cs
index b8944e730f..6783cd09bb 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Components/LogView.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Components/LogView.cs
@@ -515,7 +515,7 @@ namespace MonoDevelop.Ide.Gui.Components
}
TextWriter IConsole.Error {
- get { return errorLogger; }
+ get { return logger; }
}
void IDebugConsole.Debug (int level, string category, string message)