Up level for some logs to critical

This commit is contained in:
weko 2023-03-31 11:29:04 +00:00
parent a80aeb6715
commit 354a04f0f6
21 changed files with 95 additions and 94 deletions

View file

@ -99,7 +99,7 @@ namespace transport
}
}
else
LogPrint (eLogError, "SSU2: Can't start server because port not specified");
LogPrint (eLogCritical, "SSU2: Can't start server because port not specified");
}
}
if (found)
@ -224,7 +224,7 @@ namespace transport
}
catch (std::exception& ex )
{
LogPrint (eLogError, "SSU2: Failed to bind to ", localEndpoint, ": ", ex.what());
LogPrint (eLogCritical, "SSU2: Failed to bind to ", localEndpoint, ": ", ex.what());
ThrowFatal ("Unable to start SSU2 transport on ", localEndpoint, ": ", ex.what ());
}
return socket;