diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-10 15:05:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-10 15:05:35 +0000 |
commit | 9ed3ca2268fdf6b0f1224c54e9049b45f97a7a88 (patch) | |
tree | 1f92a71892a8a045ee516f2e5306ce5510aa994b | |
parent | f5e4150efcbe026fbf23a52e7d094fd978d2eaad (diff) | |
download | drakx-9ed3ca2268fdf6b0f1224c54e9049b45f97a7a88.tar drakx-9ed3ca2268fdf6b0f1224c54e9049b45f97a7a88.tar.gz drakx-9ed3ca2268fdf6b0f1224c54e9049b45f97a7a88.tar.bz2 drakx-9ed3ca2268fdf6b0f1224c54e9049b45f97a7a88.tar.xz drakx-9ed3ca2268fdf6b0f1224c54e9049b45f97a7a88.zip |
(raw) ensure runned programs are logged in explanations
-rw-r--r-- | perl-install/run_program.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm index 1bd8ef04f..813c8de3e 100644 --- a/perl-install/run_program.pm +++ b/perl-install/run_program.pm @@ -48,7 +48,7 @@ sub raw { ($stderr_mode, $stderr_raw, @args) = @args if $args[0] =~ /^2>>?$/; my $args = $options->{sensitive_arguments} ? '<hidden arguments>' : join(' ', @args); - log::l("running: $real_name $args" . ($root ? " with root $root" : "")); + log::explanations("running: $real_name $args" . ($root ? " with root $root" : "")); return 1 if $root && $<; |