summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-08-11 15:50:38 +0000
committerThierry Vignaud <tv@mandriva.org>2009-08-11 15:50:38 +0000
commit851d102e779e84d843a71b9f5a730be59b5e69c0 (patch)
treeeb1aca2f5990431ae29e83c85402dd1411eadc99 /urpm.pm
parent67bbf4e2bcb1ece11f00d13845b08b35a46cbcb5 (diff)
downloadurpmi-851d102e779e84d843a71b9f5a730be59b5e69c0.tar
urpmi-851d102e779e84d843a71b9f5a730be59b5e69c0.tar.gz
urpmi-851d102e779e84d843a71b9f5a730be59b5e69c0.tar.bz2
urpmi-851d102e779e84d843a71b9f5a730be59b5e69c0.tar.xz
urpmi-851d102e779e84d843a71b9f5a730be59b5e69c0.zip
(install,run) prevent garbaging text installer (#50776)
rationale: all prints in transaction/installation code now go through a callback that redirects the output at install time
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/urpm.pm b/urpm.pm
index cf62fe5e..848074bb 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -57,6 +57,7 @@ sub new {
error => sub { printf STDERR "%s\n", $_[0] },
info => sub { printf "%s\n", $_[0] }, #- displayed unless --quiet
log => sub { printf "%s\n", $_[0] }, #- displayed if --verbose
+ print => sub { printf "%s\n", $_[0] }, #- always displayed, enable to redirect output for eg: installer
ui_msg => sub {
# deprecated
$self->{log}($_[0]);