mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
Fix typos in log messages
This commit is contained in:
parent
2c35677ed3
commit
2b95bf34b0
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user