Suppose I have a code block
EchoOff[CompoundExpression[
...,
Echo[...,"echo 1",f],
Echo[...,"echo 2",g],
...
]]
Is there a function EchoOff that can be wrapped around an expression to turn off the output of all Echo encountered?
Moreover is there something like turning selective echos off? For example,
EchoOff[expr,{1,4}] turns off the first and fourth Echo encountered in the expression.
Or simply if the Echo can be marked as 1,2,... and then EchoOff can target them with their mark?
