diff options
| author | fukachan <fukachan> | 2002-09-06 04:13:25 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-09-06 04:13:25 +0000 |
| commit | a2b34eeafe73a1b4beae6b744d921ea95fa40177 (patch) | |
| tree | 0f77543a634c4c92dd5399942f15ffc572ebfcde /fml/lib/FML/Process | |
| parent | ed44bd971c7e7ec8e4b617b97d3a7a7b579038e7 (diff) | |
| download | fml8-a2b34eeafe73a1b4beae6b744d921ea95fa40177.tar.gz fml8-a2b34eeafe73a1b4beae6b744d921ea95fa40177.tar.bz2 fml8-a2b34eeafe73a1b4beae6b744d921ea95fa40177.zip | |
log more error messages
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Utils.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm index 09ed2313..ff6feaf6 100644 --- a/fml/lib/FML/Process/Utils.pm +++ b/fml/lib/FML/Process/Utils.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Utils.pm,v 1.39 2002/08/07 03:59:18 fukachan Exp $ +# $FML: Utils.pm,v 1.40 2002/09/02 03:31:44 fukachan Exp $ # package FML::Process::Utils; @@ -157,6 +157,7 @@ sub article_message_header return $curproc->{ article }->{ header }; } else { + LogError("\$curproc->{ article }->{ header } not defined"); return undef; } } @@ -174,6 +175,7 @@ sub article_message_body return $curproc->{ article }->{ body }; } else { + LogError("\$curproc->{ article }->{ body } not defined"); return undef; } } @@ -191,6 +193,7 @@ sub article_message return $curproc->{ article }->{ message }; } else { + LogError("\$curproc->{ article }->{ message } not defined"); return undef; } } |
