Don't run irc scrape in quiet mode

This commit is contained in:
DariusIII
2025-11-02 16:59:00 +01:00
parent f17cbb46ec
commit 82c9758e0d
+1 -1
View File
@@ -166,7 +166,7 @@ class TmuxTaskRunner
$niceness = Settings::settingValue('niceness') ?? 2;
$artisan = base_path('artisan');
$command = "nice -n{$niceness} php {$artisan} irc:scrape --quiet";
$command = "nice -n{$niceness} php {$artisan} irc:scrape";
$command = $this->buildCommand($command, ['log_pane' => 'scraper']);
return $this->paneManager->respawnPane($pane, $command);