diff options
author | Gustavo De Nardin <spuk@mandriva.org> | 2009-08-07 22:06:25 +0000 |
---|---|---|
committer | Gustavo De Nardin <spuk@mandriva.org> | 2009-08-07 22:06:25 +0000 |
commit | 30ebe64e084960de892bf826584e284fbf395052 (patch) | |
tree | 212cd315fc8dca3b4e9783c02c314f90adaf2a81 | |
parent | 8331d2857c2c80963e66c7c1ce25a862ee6e8ace (diff) | |
download | iurt-30ebe64e084960de892bf826584e284fbf395052.tar iurt-30ebe64e084960de892bf826584e284fbf395052.tar.gz iurt-30ebe64e084960de892bf826584e284fbf395052.tar.bz2 iurt-30ebe64e084960de892bf826584e284fbf395052.tar.xz iurt-30ebe64e084960de892bf826584e284fbf395052.zip |
Don't lie, use the same plog level for the group of messages, so they always show up complete.
-rw-r--r-- | lib/Iurt/Process.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Iurt/Process.pm b/lib/Iurt/Process.pm index 9a9128f..0c4a271 100644 --- a/lib/Iurt/Process.pm +++ b/lib/Iurt/Process.pm @@ -287,9 +287,9 @@ sub perform_command { } $cache->{warning}{$opt{hash}}{$opt{mail}}++; plog('FAIL', $comment); - plog('WARN', "--------------- Command failed, full output follows ---------------"); + plog('INFO', "--------------- Command failed, full output follows ---------------"); plog('INFO', $fulloutput); - plog('WARN', "--------------- end of command output ---------------"); + plog('INFO', "--------------- end of command output ---------------"); if ($opt{die}) { dump_cache_par($run); |