So this if statement would be more accurate: (to have the ability to have a little more specific error log message)<div><br></div><div><div><font class="Apple-style-span" face="'courier new', monospace">        if ($tstatus eq 'new') {</font></div>
<div><font class="Apple-style-span" face="'courier new', monospace">                my ($status, $msg) = $self->TicketObj->AddCustomFieldValue(Field => 'aantal_minuten_new', Value => $self->TicketObj->FirstCustomFieldValue( 'aantal_minuten_new' ) + 5, RecordTransaction => 0 );</font></div>
<div><font class="Apple-style-span" face="'courier new', monospace">                unless ( $status ) {</font></div><div><font class="Apple-style-span" face="'courier new', monospace">                        $RT::Logger->error("Coudln't change Custom Field: ". $msg);</font></div>
<div><font class="Apple-style-span" face="'courier new', monospace">                        return 0;</font></div><div><font class="Apple-style-span" face="'courier new', monospace">                }</font></div>
<div><font class="Apple-style-span" face="'courier new', monospace">        }</font></div></div><div><br></div><div>(test run seems to work this way)</div><div><br></div><div>-- Bart<br>
<br><br><div class="gmail_quote">Op 8 december 2011 15:44 schreef Ruslan Zakirov <span dir="ltr"><<a href="mailto:ruz@bestpractical.com">ruz@bestpractical.com</a>></span> het volgende:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On Thu, Dec 8, 2011 at 17:00, Bart <<a href="mailto:bart@pleh.info">bart@pleh.info</a>> wrote:<br>
> I think I've finished it, only have some issues with the $RT::Logger->error<br>
> thing. The scrip won't launch when I have that part enabled, when disabled<br>
> it runs just fine O_o<br>
<br>
</div>$val is inside if {} block and lexically scoped, so it's not available outside.<br>
<br>
Use my ($val, $msg); if { ($val, $msg) = ... }<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Best regards, Ruslan.<br>
</font></span></blockquote></div><br></div>