diff options
| author | fukachan <fukachan> | 2004-01-02 02:11:25 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-01-02 02:11:25 +0000 |
| commit | 25d833bdd1daedd513f038da4d6dc72b499bd9e4 (patch) | |
| tree | 6c46ce19a00f1c3ab1292aeff368033bc37993e4 /fml/lib/FML/Process/Error.pm | |
| parent | 63f8e58437c9515050415f9a619348c478d39c2b (diff) | |
| download | fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.tar.gz fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.tar.bz2 fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.zip | |
$curproc->resolve_ml_specific_variables( $args );
$curproc->load_config_files( $args->{ cf_list } );
=>
$curproc->resolve_ml_specific_variables();
my $cf_list = $curproc->get_config_files_list();
$curproc->load_config_files($cf_list);
$curproc->parse_incoming_message($args);
=>
$curproc->parse_incoming_message();
Diffstat (limited to 'fml/lib/FML/Process/Error.pm')
| -rw-r--r-- | fml/lib/FML/Process/Error.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm index e7815b61..1b665b57 100644 --- a/fml/lib/FML/Process/Error.pm +++ b/fml/lib/FML/Process/Error.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Error.pm,v 1.35 2003/11/29 10:24:29 fukachan Exp $ +# $FML: Error.pm,v 1.36 2004/01/01 23:52:16 fukachan Exp $ # package FML::Process::Error; @@ -76,14 +76,15 @@ sub prepare my $eval = $config->get_hook( 'error_prepare_start_hook' ); if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } - $curproc->resolve_ml_specific_variables( $args ); - $curproc->load_config_files( $args->{ cf_list } ); + $curproc->resolve_ml_specific_variables(); + my $cf_list = $curproc->get_config_files_list(); + $curproc->load_config_files($cf_list); $curproc->fix_perl_include_path(); $curproc->scheduler_init(); $curproc->log_message_init(); if ($config->yes('use_error_analyzer_program')) { - $curproc->parse_incoming_message($args); + $curproc->parse_incoming_message(); } else { exit(0); |
