LetsFlow
  • Introduction
  • Tutorial
    • The basics
    • A handshake
    • A conversation
    • A proper introduction
    • Group meeting
    • Quote
  • Cookbook
  • ENGINE
    • Installation
    • Authentication
    • API
    • Services
      • Configuration
      • Messaging
        • ZeroMQ
        • AMQP 0-9-1
        • Webhook
      • Engine service
  • Integration
    • Frontend
      • React
      • Angular
      • Vue
      • Svelte
    • Backend
  • Reference
    • Scenario
      • Actor
      • Action
        • Update instruction
      • State
        • Transition
          • Log
        • Notify
      • Data function
    • Schema
    • Process
      • Current state
      • Previous log
      • Prediction
      • Events
        • Instantiate event
        • Action event
        • Timeout event
  • Libraries
    • Core library
    • JMESPath
    • Test suite
      • Given
      • When
      • Then
        • Assert state
        • Assert actor
        • Assert variable
        • Assert service
        • Assert event
      • Customize
  • Advanced topics
    • Deep integration
    • Decentralized workflows
    • Custom JMESPath functions
    • Custom YAML tags
Powered by GitBook
On this page
  • Properties
  • title
  • description
  • timestamp
  • actor
  • Update instructions

Was this helpful?

  1. Reference
  2. Process

Previous log

LetsFlow will log state transitions appending log entries to the previous property of the process. By default, action transitions are logged and timeout transitions are not.

Properties

title

string

The title of the state transition. By default, this is the title of the current action.

description

string

A description of the state transition. By default, this is the description of the current action.

timestamp

date

The time when the transition took place.

actor

{ key: string; id?: string }

The key of the actor and the user ID that performed the action. Additional properties may be added.

Update instructions

The previous property can be modified using update instructions. This is useful for collapsing log entries.

PreviousCurrent stateNextPrediction

Last updated 2 months ago

Was this helpful?