summaryrefslogtreecommitdiffstats
path: root/gurpmi2
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-03-24 15:06:50 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-03-24 15:06:50 +0000
commit6869cdfc8f0f579c0cc1b110bdcad2a5e23e973b (patch)
treef8abc7fbb51aace3e77192643065b4f7f2eb49e4 /gurpmi2
parentba06798039816c9687949c136ac7a806557eeb08 (diff)
downloadurpmi-6869cdfc8f0f579c0cc1b110bdcad2a5e23e973b.tar
urpmi-6869cdfc8f0f579c0cc1b110bdcad2a5e23e973b.tar.gz
urpmi-6869cdfc8f0f579c0cc1b110bdcad2a5e23e973b.tar.bz2
urpmi-6869cdfc8f0f579c0cc1b110bdcad2a5e23e973b.tar.xz
urpmi-6869cdfc8f0f579c0cc1b110bdcad2a5e23e973b.zip
Use $urpm->{log} instead of raw print
Diffstat (limited to 'gurpmi2')
-rwxr-xr-xgurpmi211
1 files changed, 6 insertions, 5 deletions
diff --git a/gurpmi2 b/gurpmi2
index 384a501d..d6768860 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -207,11 +207,11 @@ sub ask_continue {
my ($msg, $nextclosure) = @_;
my $vbox = Gtk2::VBox->new(0, 5);
$vbox->pack_start(new_label($msg), 1, 1, 0);
- printf "%s\n", $msg;
+ $urpm->{log}($msg);
my $continue_button = Gtk2::Button->new(but(N("_Ok")));
my $quit_button = Gtk2::Button->new(but(N("_Abort")));
- $quit_button->signal_connect(clicked => sub { print("=> cancel\n"); &quit(@_); } );
- $continue_button->signal_connect(clicked => sub { print("=> ok\n"); goto &$nextclosure });
+ $quit_button->signal_connect(clicked => sub { $urpm->{log}("=> cancel"); &quit(@_); } );
+ $continue_button->signal_connect(clicked => sub { $urpm->{log}("=> ok"); goto &$nextclosure });
add_button_box($vbox, $quit_button, $continue_button);
change_mainw($vbox);
# default is to continue, but according to some HIG, warning should reverse the choise and defaults to abort
@@ -221,7 +221,8 @@ sub ask_continue {
sub ask_continue_if_no_auto {
my ($msg, $nextclosure) = @_;
if ($gurpmi::options{auto}) {
- printf "%s\n=> ok(auto)\n", $msg;
+ $urpm->{log}($msg);
+ $urpm->{log}("=> ok(auto)");
goto &$nextclosure;
} else {
ask_continue($msg, $nextclosure);
@@ -233,7 +234,7 @@ sub ask_continue_blocking {
my $w = Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'question', 'yes-no', $msg);
my $answer = $w->run;
$w->destroy;
- printf "%s => %s\n", $msg, $answer;
+ $urpm->{log}($msg . " => " . $answer);
exit(1) if $answer eq 'no';
1;
}