From 1502b75accd0640ec2e46573ddc1ff42029729a8 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Tue, 7 Feb 2006 17:59:00 +0000 Subject: A bit of clarification in logging code --- urpm/msg.pm | 7 ++++--- urpmi | 22 +++++++++++----------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/urpm/msg.pm b/urpm/msg.pm index 75b65a27..18053e13 100644 --- a/urpm/msg.pm +++ b/urpm/msg.pm @@ -46,10 +46,11 @@ sub N { my $noexpr = N("Nn"); my $yesexpr = N("Yy"); +#- writes only to logfile, not to screen sub log_it { - #- if invoked as a simple user, nothing should be logged. - if ($::log) { - open my $fh, ">>$::log" or die "can't output to log file: $!\n"; + if ($::logfile) { + open my $fh, ">>$::logfile" + or die "Can't output to log file [$::logfile]: $!\n"; print $fh @_; close $fh; } diff --git a/urpmi b/urpmi index fb846e30..cf963684 100755 --- a/urpmi +++ b/urpmi @@ -57,7 +57,7 @@ our $rpm_opt = "vh"; our $use_provides = 1; our $verbose = 0; our $usedistrib = 0; -our $log = ''; +our $logfile = ''; our $restricted = 0; our $nolock = 0; @@ -220,14 +220,14 @@ if ($bug) { #- copy all synthesis file used, along with configuration of urpmi system("cp", "-af", $urpm->{skiplist}, $urpm->{instlist}, $urpm->{config}, $bug) and die N("Copying failed"); - #- allow log file. - $log = "$bug/urpmi.log"; + #- log everything for bug report. + $logfile = "$bug/urpmi.log"; } if ($env) { print STDERR N("using specific environment on %s\n", $env); - $log = "$env/urpmi_env.log"; - unlink $log; + $logfile = "$env/urpmi_env.log"; + unlink $logfile; #- setting new environment. $urpm->{config} = "$env/urpmi.cfg"; $urpm->{skiplist} = "$env/skip.list"; @@ -238,8 +238,8 @@ if ($env) { #- need to be root if binary rpms are to be installed $auto_select || @names || @files and $urpm->{fatal}(1, N("Only superuser is allowed to install packages")); } else { - #- allow log if not defined. - $log ||= "/var/log/urpmi.log"; + #- default log file + $logfile ||= "/var/log/urpmi.log"; } } @@ -252,14 +252,14 @@ Use --allow-force to force operation.", $urpm::sys::mountpoint)); my ($pid_out, $pid_err); open SAVEOUT, ">&STDOUT"; select SAVEOUT; $| = 1; open SAVEERR, ">&STDERR"; select SAVEERR; $| = 1; -if ($log && !$INC{"Devel/Trace.pm"}) { - #- log only at this point in case of query usage. +if ($logfile && !$INC{"Devel/Trace.pm"}) { log_it(scalar localtime, " urpmi called with $command_line\n"); + #- fork twice to copy stdout and stderr to $logfile unless ($pid_out = open STDOUT, "|-") { my $buf_r; while () { - open my $fh, ">>$log"; select $fh; $| = 1; + open my $fh, ">>$logfile"; select $fh; $| = 1; select SAVEOUT; $| = 1; $/ = \1; print SAVEOUT $_; @@ -271,7 +271,7 @@ if ($log && !$INC{"Devel/Trace.pm"}) { unless ($pid_err = open STDERR, "|-") { my $buf_r; while () { - open my $fh, ">>$log"; select $fh; $| = 1; + open my $fh, ">>$logfile"; select $fh; $| = 1; select SAVEERR; $| = 1; $/ = \1; print SAVEERR $_; -- cgit v1.2.1