Skip to content
Snippets Groups Projects
Commit 4e61b07b authored by Simon Spinner's avatar Simon Spinner
Browse files

Fix error due to wrong format specifier.

parent 9863991e
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,7 @@ public class MonitoringService extends AgentController implements Service<Monito
sendData(curInvocation.getResidenceTimeSensor(), entityName, timestampInSec, inResidenceTime);
// Write to log file
out.printf("%d, %s, , %d, %d, %d, %s\n", timestampInSec, curInvocation.toString(), inInvocationCount,
out.printf("%f, %s, , %d, %d, %d, %s\n", timestampInSec, curInvocation.toString(), inInvocationCount,
inExecutionTime, inResidenceTime, curInvocation.getAdditionalInformation());
for (OperationRecord curOutgoingEndpoint : curInvocation.getCalledEndpoints()) {
......@@ -188,7 +188,7 @@ public class MonitoringService extends AgentController implements Service<Monito
outExecutionTime);
// Write to log file
out.printf("%d, %s, %s, %d, %d, %s\n", timestampInSec, curInvocation.toString(),
out.printf("%f, %s, %s, %d, %d, %s\n", timestampInSec, curInvocation.toString(),
curOutgoingInvocation.toString(), outInvocationCount, outExecutionTime,
curOutgoingInvocation.getAdditionalInformation());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment