{%
if State == 'New' then
    echo('Downloading...')
end

if State == 'Exception' or State == 'Killed' or State == 'Cancelled' then
    echo('Download board log failed.')
end

if State == 'Completed' then
    echo('Download board log to /tmp/ successfully.')
end
%}