Changing some ERROR logs by INFO logs

This commit is contained in:
bernatx 2021-10-05 19:31:56 +02:00
parent ffcaad9fd6
commit b617b4a95b
1 changed files with 2 additions and 2 deletions

View File

@ -2020,7 +2020,7 @@ void FCarlaServer::AsyncRun(uint32 NumberOfWorkerThreads)
int32_t RPCThreads = std::max(2u, NumberOfWorkerThreads / 2u);
int32_t StreamingThreads = std::max(2u, NumberOfWorkerThreads - RPCThreads);
UE_LOG(LogCarla, Error, TEXT("FCommandLine %s"), FCommandLine::Get());
UE_LOG(LogCarla, Log, TEXT("FCommandLine %s"), FCommandLine::Get());
if(!FParse::Value(FCommandLine::Get(), TEXT("-RPCThreads="), RPCThreads))
{
@ -2031,7 +2031,7 @@ void FCarlaServer::AsyncRun(uint32 NumberOfWorkerThreads)
StreamingThreads = std::max(2u, NumberOfWorkerThreads - RPCThreads);
}
UE_LOG(LogCarla, Error, TEXT("FCarlaServer AsyncRun %d, RPCThreads %d, StreamingThreads %d"),
UE_LOG(LogCarla, Log, TEXT("FCarlaServer AsyncRun %d, RPCThreads %d, StreamingThreads %d"),
NumberOfWorkerThreads, RPCThreads, StreamingThreads);
Pimpl->Server.AsyncRun(RPCThreads);