From 052f8e2c4206edd835f55f5a27212e544d9363b0 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 13 Nov 2020 12:34:42 -0800 Subject: [PATCH] Addresses - not fixes - #8740 More investigation here is needed --- app/Console/Commands/ObjectImportCommand.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/ObjectImportCommand.php b/app/Console/Commands/ObjectImportCommand.php index 83d88ffb27..3325a0c65d 100644 --- a/app/Console/Commands/ObjectImportCommand.php +++ b/app/Console/Commands/ObjectImportCommand.php @@ -55,8 +55,10 @@ class ObjectImportCommand extends Command ->setShouldNotify($this->option('send-welcome')) ->setUsernameFormat($this->option('username_format')); - $logFile = $this->option('logfile'); - \Log::useFiles($logFile); + + // This $logFile/useFiles() bit is currently broken, so commenting it out for now + // $logFile = $this->option('logfile'); + // \Log::useFiles($logFile); $this->comment('======= Importing Items from '.$filename.' ========='); $importer->import();