Skip to content
Snippets Groups Projects
Commit 106643c7 authored by Jonathan Ehret's avatar Jonathan Ehret
Browse files

fix wrong log messages

parent ea345be8
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,7 @@ void USFParticipant::UpdateIndependentVarsExecutionJsonFile() const ...@@ -87,7 +87,7 @@ void USFParticipant::UpdateIndependentVarsExecutionJsonFile() const
if (ParticipantSequenceNumber == -1) if (ParticipantSequenceNumber == -1)
{ {
FSFLoggingUtils::Log( FSFLoggingUtils::Log(
"[USFParticipant::ReadExecutionJsonFile] participant json file for participant with sequence number " + "[USFParticipant::UpdateIndependentVarsExecutionJsonFile] participant json file for participant with sequence number " +
FString::FromInt(ParticipantSequenceNumber) + " is not to be read, probably called on init so everything is fine!", false); FString::FromInt(ParticipantSequenceNumber) + " is not to be read, probably called on init so everything is fine!", false);
return; return;
} }
...@@ -96,8 +96,8 @@ void USFParticipant::UpdateIndependentVarsExecutionJsonFile() const ...@@ -96,8 +96,8 @@ void USFParticipant::UpdateIndependentVarsExecutionJsonFile() const
if (Json == nullptr) if (Json == nullptr)
{ {
FSFLoggingUtils::Log( FSFLoggingUtils::Log(
"[USFParticipant::ReadExecutionJsonFile] participant json file for participant " + "[USFParticipant::UpdateIndependentVarsExecutionJsonFile] participant json file for participant " +
ParticipantID + " cannot be read!", true); ParticipantID + " cannot be read!", false);
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment