diff options
Diffstat (limited to 'FacebookRM/connection.cpp')
-rw-r--r-- | FacebookRM/connection.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FacebookRM/connection.cpp b/FacebookRM/connection.cpp index d871ee1..d26b9a3 100644 --- a/FacebookRM/connection.cpp +++ b/FacebookRM/connection.cpp @@ -71,6 +71,10 @@ void FacebookProto::ChangeStatus(void*) }
else if ( old_status == ID_STATUS_OFFLINE )
{ // Login
+ SYSTEMTIME t;
+ GetLocalTime( &t );
+ Log("[%d.%d.%d] Using Facebook Protocol RM %s", t.wDay, t.wMonth, t.wYear, __VERSION_STRING);
+
LOG("***** Beginning SignOn process");
m_iStatus = facy.self_.status_id = ID_STATUS_CONNECTING;
|