From: Date: May 29 2007 4:13pm Subject: Connector/NET commit: r740 - in branches/5.0: . Driver/Source List-Archive: http://lists.mysql.com/commits/27586 X-Bug: 28706 Message-Id: <200705291413.l4TED8T2012457@bk-internal.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modified: branches/5.0/CHANGES branches/5.0/Driver/Source/Logger.cs Log: Bug #28706 Log messages are truncated No longer truncating logged commands to 300 characters. Modified: branches/5.0/CHANGES =================================================================== --- branches/5.0/CHANGES 2007-05-24 21:44:55 UTC (rev 739) +++ branches/5.0/CHANGES 2007-05-29 14:13:07 UTC (rev 740) @@ -1,3 +1,9 @@ +Version 5.0.8 + Bugs fixed + ---------- + Bug #28706 Log messages are truncated + + Version 5.0.7 5/16/2007 Bugs fixed Modified: branches/5.0/Driver/Source/Logger.cs =================================================================== --- branches/5.0/Driver/Source/Logger.cs 2007-05-24 21:44:55 UTC (rev 739) +++ branches/5.0/Driver/Source/Logger.cs 2007-05-29 14:13:07 UTC (rev 740) @@ -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.ToString(), text); //TODO: check this