From e3feb56242b37d08125beb9d54eb5d1e84cfee46 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 29 Oct 2009 21:54:56 +0000 Subject: [PATCH] Include date + time in disconnect log message. --- source/mysql_connection.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/mysql_connection.pas b/source/mysql_connection.pas index 772e0a74..cca5f336 100644 --- a/source/mysql_connection.pas +++ b/source/mysql_connection.pas @@ -268,7 +268,7 @@ begin FConnectionStarted := 0; FHandle := nil; FCapabilities := []; - Log(lcInfo, 'Connection to '+FHostname+' closed'); + Log(lcInfo, 'Connection to '+FHostname+' closed at '+DateTimeToStr(Now)); end; end;