X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/c03710e5962e640d8a8e23cd9144e753ff282a50..26f0a7be9285009bcfbb743d61211be059ff8db8:/projects/stargazer/user.cpp?ds=inline diff --git a/projects/stargazer/user.cpp b/projects/stargazer/user.cpp index b68c632a..e63d37d3 100644 --- a/projects/stargazer/user.cpp +++ b/projects/stargazer/user.cpp @@ -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; }