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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Drochak <nickd@mono-cvs.ximian.com>2002-09-17 19:05:21 +0400
committerNick Drochak <nickd@mono-cvs.ximian.com>2002-09-17 19:05:21 +0400
commit9f997ad5cd7d474015a8b22e940f66807770cef0 (patch)
tree175229cfc6a0334c766876a916cac1d8909ec03b /mcs/class/System/System.Diagnostics
parent7e6e368b3f445cceb70a353a4a06d0f985e00025 (diff)
2002-09-17 Nick Drochak <ndrochak@gol.com>
* UriTest.cs: Fixed some path separator issues for the tests running on linux. * TraceTest.cs: Remove extraneous Console.WriteLine(). * ServicePointManagerTest.cs: Convert Console.WriteLine() into a Fail() * TraceImpl.cs: Add some debug to find the error. Still working on this one. svn path=/trunk/mcs/; revision=7563
Diffstat (limited to 'mcs/class/System/System.Diagnostics')
-rw-r--r--mcs/class/System/System.Diagnostics/TraceImpl.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/TraceImpl.cs b/mcs/class/System/System.Diagnostics/TraceImpl.cs
index f159f2518c4..8f135a80978 100644
--- a/mcs/class/System/System.Diagnostics/TraceImpl.cs
+++ b/mcs/class/System/System.Diagnostics/TraceImpl.cs
@@ -132,6 +132,7 @@ namespace System.Diagnostics {
{
lock (lock_) {
foreach (TraceListener listener in Listeners) {
+Console.WriteLine("before incr. listener.IndentLevel={0}", listener.IndentLevel);
listener.IndentLevel++;
}
}
@@ -141,6 +142,7 @@ namespace System.Diagnostics {
{
lock (lock_) {
foreach (TraceListener listener in Listeners) {
+Console.WriteLine("before decr. listener.IndentLevel={0}", listener.IndentLevel);
listener.IndentLevel--;
}
}