aboutsummaryrefslogtreecommitdiffstats
path: root/emi
diff options
context:
space:
mode:
Diffstat (limited to 'emi')
-rwxr-xr-xemi6
1 files changed, 5 insertions, 1 deletions
diff --git a/emi b/emi
index 179ca07..716330d 100755
--- a/emi
+++ b/emi
@@ -42,7 +42,11 @@ my %run;
my $program_name = 'emi';
$run{program_name} = $program_name;
-open(my $LOG, ">&STDERR");
+my $LOG;
+if (!env{'EMI_LOG_FILE'} || !open($LOG, '>>', env{'EMI_LOG_FILE'})) {
+ open($LOG, ">&STDERR");
+}
+
plog_init($program_name, $LOG, 7, 1);
my $HOME = $ENV{HOME};