= sign in trace

Not applicable

Hi Devs,

I see some variables in trace have

1) " =" sign

2) crossed out " =" sign

3) without "= "sign

What these signs mean ?

0 3 87
3 REPLIES 3

1) = sign means that the variable was assigned a value

2) crossed out = sign means the variable could not be assigned a value due to an error in the policy execution

3) without = sign means the variable value was read from

@Hansel Miranda and @Mayank,

Just an update on the crossed out = sign, this usually refers to a read only variable not being updated.

In Variable reference docs if you try to update any ready only variables you'll see the crossed out = sign.

Hope this helps!

Thanks for response.