mirror of
https://github.com/gchq/CyberChef
synced 2025-03-13 21:36:56 +00:00
Display recipe progress in status message
This commit is contained in:
parent
8c2cc5b6d2
commit
ad982746dd
1 changed files with 5 additions and 1 deletions
|
@ -200,7 +200,11 @@ class Recipe {
|
|||
|
||||
try {
|
||||
input = await dish.get(op.inputType);
|
||||
log.debug("Executing operation");
|
||||
log.debug(`Executing operation '${op.name}'`);
|
||||
|
||||
if (ENVIRONMENT_IS_WORKER()) {
|
||||
self.sendStatusMessage(`Baking... (${i+1}/${this.opList.length})`);
|
||||
}
|
||||
|
||||
if (op.flowControl) {
|
||||
// Package up the current state
|
||||
|
|
Loading…
Add table
Reference in a new issue