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
path: root/mcs
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2005-02-02 01:28:18 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2005-02-02 01:28:18 +0300
commit507730706de9318b3200962b6693ea32bdc8428a (patch)
treee588682bcc37b9f19fbfc9bbf11de3453d8bafe9 /mcs
parent2ec2b9f43f98679d73d5919d9bda4b81a6387b44 (diff)
2005-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TraceContext.cs: writing a message without any other argument is not a warniing. Fixes bug #72017. svn path=/trunk/mcs/; revision=39949
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Web/System.Web/ChangeLog9
-rw-r--r--mcs/class/System.Web/System.Web/TraceContext.cs2
2 files changed, 8 insertions, 3 deletions
diff --git a/mcs/class/System.Web/System.Web/ChangeLog b/mcs/class/System.Web/System.Web/ChangeLog
index efa67d52b96..13817a7a985 100644
--- a/mcs/class/System.Web/System.Web/ChangeLog
+++ b/mcs/class/System.Web/System.Web/ChangeLog
@@ -1,7 +1,12 @@
+2005-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * TraceContext.cs: writing a message without any other argument is not
+ a warniing. Fixes bug #72017.
+
2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
- * HttpApplication.cs: if there are no more handlers, finish the request and
- ensure we call Complete on it. Now FreeTextBox 3.0 works.
+ * HttpApplication.cs: if there are no more handlers, finish the
+ request and ensure we call Complete on it. Now FreeTextBox 3.0 works.
2004-12-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
diff --git a/mcs/class/System.Web/System.Web/TraceContext.cs b/mcs/class/System.Web/System.Web/TraceContext.cs
index efa37b06471..5777ab4141f 100644
--- a/mcs/class/System.Web/System.Web/TraceContext.cs
+++ b/mcs/class/System.Web/System.Web/TraceContext.cs
@@ -94,7 +94,7 @@ namespace System.Web {
}
public void Write(string msg) {
- Write(String.Empty, msg, null, true);
+ Write(String.Empty, msg, null, false);
}
public void Write(string category, string msg) {