summaryrefslogtreecommitdiffstats
path: root/urpm/msg.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/msg.pm')
-rw-r--r--urpm/msg.pm8
1 files changed, 2 insertions, 6 deletions
diff --git a/urpm/msg.pm b/urpm/msg.pm
index b062ee7f..010741a4 100644
--- a/urpm/msg.pm
+++ b/urpm/msg.pm
@@ -6,6 +6,7 @@ use strict;
no warnings;
use Exporter;
use URPM;
+use urpm::util;
my $encoding;
BEGIN {
@@ -92,12 +93,7 @@ sub sys_log { defined &syslog and eval { syslog("info", @_) } }
#- writes only to logfile, not to screen
sub bug_log {
- if ($::logfile) {
- open my $fh, ">>$::logfile"
- or die "Can't output to log file [$::logfile]: $!\n";
- print $fh @_;
- close $fh;
- }
+ append_to_file($::logfile, @_) if $::logfile;
}
sub ask_yes_or_no {