We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e50a7b commit b22d636Copy full SHA for b22d636
src/Transports/Unix.cxx
@@ -30,7 +30,7 @@ namespace transports
30
Unix::Unix(const std::string& socketPath) : mSocket(mIoService), mEndpoint(socketPath)
31
{
32
if (!boost::filesystem::exists(socketPath)) {
33
- MonLogger::Get(Severity::Error) << "Unix sockes path is invalid: " << socketPath << MonLogger::End();
+ MonLogger::Get(Severity::Error) << "Unix socket path is invalid: " << socketPath << MonLogger::End();
34
} else {
35
mSocket.open();
36
MonLogger::Get(Severity::Info) << "Unix socket transport initialized (" << socketPath << ")" << MonLogger::End();
0 commit comments