You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG_ERROR("NetworkServer: Could not bind network socket. Is port %hu already being used?", GetPort());
298
+
LOG_ERROR("[NetworkServer] Could not bind network socket. Is port %hu already being used?", GetPort());
299
299
}
300
300
elseif(errno == EACCES)
301
301
{
302
-
LOG_ERROR("NetworkServer: Could not bind network socket. Access to socket was denied.");
302
+
LOG_ERROR("[NetworkServer] Could not bind network socket. Access to socket was denied.");
303
303
}
304
304
elseif(errno == EBADF)
305
305
{
306
-
LOG_ERROR("NetworkServer: Could not bind network socket. sockfd is not a valid file descriptor.");
306
+
LOG_ERROR("[NetworkServer] Could not bind network socket. sockfd is not a valid file descriptor.");
307
307
}
308
308
elseif(errno == EINVAL)
309
309
{
310
-
LOG_ERROR("NetworkServer: Could not bind network socket. The socket is already bound to an address, or addrlen is wrong, or addr is not a valid address for this socket's domain.");
310
+
LOG_ERROR("[NetworkServer] Could not bind network socket. The socket is already bound to an address, or addrlen is wrong, or addr is not a valid address for this socket's domain.");
311
311
}
312
312
elseif(errno == ENOTSOCK)
313
313
{
314
-
LOG_ERROR("NetworkServer: Could not bind network socket. The file descriptor sockfd does not refer to a socket.");
314
+
LOG_ERROR("[NetworkServer] Could not bind network socket. The file descriptor sockfd does not refer to a socket.");
LOG_INFO("Valid v%i profile found for %s", profile_version, filename.c_str());
474
+
LOG_INFO("[ProfileManager] Valid v%i profile found for %s", profile_version, filename.c_str());
475
475
}
476
476
else
477
477
{
478
-
LOG_WARNING("Profile %s isn't valid for current version (v%i, expected v%i at most)", filename.c_str(), profile_version, OPENRGB_PROFILE_VERSION);
478
+
LOG_WARNING("[ProfileManager] Profile %s isn't valid for current version (v%i, expected v%i at most)", filename.c_str(), profile_version, OPENRGB_PROFILE_VERSION);
479
479
}
480
480
}
481
481
else
482
482
{
483
-
LOG_WARNING("Profile %s isn't valid: header is missing", filename.c_str());
483
+
LOG_WARNING("[ProfileManager] Profile %s isn't valid: header is missing", filename.c_str());
0 commit comments