Sample Debugging: Adding Conditional Breakpoints

The esp_client command-line utility provides options for adding conditions to a breakpoint. These breakpoints trigger only when the condition evaluates at true.

  1. Add a breakpoint on a stream, before it begins processing an input record from another stream using:
    bp add `stream` `inputStream` [`condition`]
  2. Add a breakpoint on a stream, after it has processed an input record and produced an output using:
    bp add `stream` out [`condition`]