2005-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 1 Feb 2005 22:28:18 +0000 (22:28 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 1 Feb 2005 22:28:18 +0000 (22:28 -0000)
* TraceContext.cs: writing a message without any other argument is not
a warniing. Fixes bug #72017.

svn path=/trunk/mcs/; revision=39949

mcs/class/System.Web/System.Web/ChangeLog
mcs/class/System.Web/System.Web/TraceContext.cs

index efa67d52b969775ebb98a15e86ebce5613ce02cc..13817a7a985afc1f9222fe68e819a073c99bdb56 100644 (file)
@@ -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>
 
index efa37b06471a4bc0ef539a00e582cfd983577512..5777ab4141fd631e2e456fee9b4cb14e36f44550 100644 (file)
@@ -94,7 +94,7 @@ namespace System.Web {
       }\r
 \r
       public void Write(string msg) {\r
-        Write(String.Empty, msg, null, true);\r
+        Write(String.Empty, msg, null, false);\r
       }\r
 \r
       public void Write(string category, string msg) {\r