List:Commits« Previous MessageNext Message »
From:rburnett Date:May 29 2007 4:18pm
Subject:Connector/NET commit: r741 - in trunk: . Driver/Source
View as plain text  
Modified:
   trunk/CHANGES
   trunk/Driver/Source/Logger.cs
Log:
merge from 5.0

Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES	2007-05-29 14:13:07 UTC (rev 740)
+++ trunk/CHANGES	2007-05-29 14:18:11 UTC (rev 741)
@@ -22,6 +22,11 @@
     What this means is that passing in null as a database restriction will report
     objects on the currently selected database only.
     
+Version 5.0.8
+  Bugs fixed
+  ----------
+  Bug #28706 Log messages are truncated  
+  
 Version 5.0.7 5/16/2007
 
   Bugs fixed

Modified: trunk/Driver/Source/Logger.cs
===================================================================
--- trunk/Driver/Source/Logger.cs	2007-05-29 14:13:07 UTC (rev 740)
+++ trunk/Driver/Source/Logger.cs	2007-05-29 14:18:11 UTC (rev 741)
@@ -35,9 +35,6 @@
 
 		static public void LogCommand( DBCmd cmd, string text)
 		{
-			if (text.Length > 300)
-				text = text.Substring(0, 300);
-
 			string msg = String.Format("Executing command {0} with text ='{1}'", cmd, text);
 			//TODO: check this
 				//Enum.GetName( typeof(DBCmd), cmd ), text );

Thread
Connector/NET commit: r741 - in trunk: . Driver/Sourcerburnett29 May