Subject: | ACTION callbacks |
sub my_notify {
my $state = shift;
my $var = shift;
my $val = shift;
Show quoted text
>> print "$variable set to $value";
}
I think this should read:
print "$var set to $val";
Also, why on the initial set when the callback is called is the value
"1" instead of the actual value of the variable?