]> git.stg.codes - stg.git/commitdiff
Косметичні виправлення
authorMaxim Mamontov <faust@gts.dp.ua>
Wed, 5 Jan 2011 15:36:35 +0000 (17:36 +0200)
committerMaxim Mamontov <faust@gts.dp.ua>
Wed, 5 Jan 2011 15:36:35 +0000 (17:36 +0200)
projects/stargazer/user.cpp

index b68c632ab91fd3b93491bb6c5e404cd71919a104..e63d37d32b109c17c44216929dbb023f5f11ff37 100644 (file)
@@ -1158,7 +1158,6 @@ if (SendMessage(*msg))
     if (store->AddMessage(msg, login))
         {
         errorStr = store->GetStrError();
-        STG_LOGGER & WriteServLog = GetStgLogger();
         WriteServLog("Error adding message %s", errorStr.c_str());
         WriteServLog("%s", store->GetStrError().c_str());
         return -1;
@@ -1179,7 +1178,6 @@ else
         if (store->AddMessage(msg, login))
             {
             errorStr = store->GetStrError();
-            STG_LOGGER & WriteServLog = GetStgLogger();
             WriteServLog("Error adding message %s", errorStr.c_str());
             WriteServLog("%s", store->GetStrError().c_str());
             return -1;
@@ -1266,7 +1264,11 @@ while (it != messages.end())
     if (it->header.repeat < 0)
         {
         printfd(__FILE__, "DelMessage\n");
-        store->DelMessage(it->header.id, login);
+        if (store->DelMessage(it->header.id, login))
+            {
+            WriteServLog("Error deleting message: '%s'", store->GetStrError().c_str());
+            printfd(__FILE__, "Error deleting message: '%s'\n", store->GetStrError().c_str());
+            }
         messages.erase(it++);
         }
     else
@@ -1279,7 +1281,8 @@ while (it != messages.end())
         #endif
         if (store->EditMessage(*it, login))
             {
-            printfd(__FILE__, "EditMessage Error %s\n", store->GetStrError().c_str());
+            WriteServLog("Error modifying message: '%s'", store->GetStrError().c_str());
+            printfd(__FILE__, "Error modifying message: '%s'\n", store->GetStrError().c_str());
             }
         ++it;
         }