Skip to content

Commit

Permalink
Add "Start invocation" in InvocationStateMachine, symmetric with "End…
Browse files Browse the repository at this point in the history
… invocation" log line
  • Loading branch information
slinkydeveloper committed Apr 22, 2024
1 parent bf3db07 commit f22dfea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ void onStartMessage(MessageLite msg) {
span.addEvent(
"Start", Attributes.of(Tracing.RESTATE_INVOCATION_ID, startMessage.getDebugId()));
}
LOG.info("Start invocation");

// Execute state transition
this.transitionState(InvocationState.REPLAYING);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public InvocationFlow.InvocationOutputPublisher output() {

@Override
public void start() {
LOG.info("Start processing invocation");
LOG.trace("Start processing invocation");
stateMachine.startAndConsumeInput(
SyscallCallback.of(
request -> {
Expand Down

0 comments on commit f22dfea

Please sign in to comment.