Skip to content

Commit c564b91

Browse files
committed
Rebase
1 parent 8e50cda commit c564b91

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/state_machine.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,9 +802,8 @@ export class DurableExecutionStateMachine<I, O> implements RestateContext {
802802
handleInputMessage(m: PollInputStreamEntryMessage) {
803803
this.invocationIdString = uuidV7FromBuffer(this.invocationId);
804804
this.logPrefix = `[${this.method.packge}.${this.method.service}-${this.instanceKey.toString('base64')}-${this.invocationIdString}] [${this.method.method.name}]`;
805-
rlog.debugJournalMessage(this.logPrefix, "Received input message.", m);
806805

807-
this.method.invoke(this, m.value).then(
806+
this.method.invoke(this, m.value, this.logPrefix).then(
808807
(value) => this.onCallSuccess(value),
809808
(failure) => this.onCallFailure(failure)
810809
);

0 commit comments

Comments
 (0)