Fix typos in log messages

This commit is contained in:
IOhannes m zmölnig 2024-08-21 11:50:22 +02:00
parent 2c35677ed3
commit 2b95bf34b0
3 changed files with 7 additions and 7 deletions

View File

@ -51,7 +51,7 @@ void ConnectInfo::RefreshData()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[ConnectInfo::showEvent] Unable to retreive config!");
blog(LOG_ERROR, "[ConnectInfo::showEvent] Unable to retrieve config!");
return;
}

View File

@ -74,7 +74,7 @@ void SettingsDialog::showEvent(QShowEvent *)
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retreive config!");
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retrieve config!");
return;
}
@ -114,7 +114,7 @@ void SettingsDialog::RefreshData()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retreive config!");
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retrieve config!");
return;
}
@ -144,7 +144,7 @@ void SettingsDialog::SaveFormData()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retreive config!");
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retrieve config!");
return;
}

View File

@ -78,7 +78,7 @@ void WebSocketServer::Start()
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[WebSocketServer::Start] Unable to retreive config!");
blog(LOG_ERROR, "[WebSocketServer::Start] Unable to retrieve config!");
return;
}
@ -222,7 +222,7 @@ void WebSocketServer::onOpen(websocketpp::connection_hdl hdl)
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[WebSocketServer::onOpen] Unable to retreive config!");
blog(LOG_ERROR, "[WebSocketServer::onOpen] Unable to retrieve config!");
return;
}
@ -330,7 +330,7 @@ void WebSocketServer::onClose(websocketpp::connection_hdl hdl)
// Get config for tray notification
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[WebSocketServer::onClose] Unable to retreive config!");
blog(LOG_ERROR, "[WebSocketServer::onClose] Unable to retrieve config!");
return;
}