fix: truncate exception so meaningful data shows first

This commit is contained in:
hackerESQ
2025-03-07 17:20:15 -06:00
parent ca48d702a7
commit 28e0ad68fc
+1 -1
View File
@@ -60,7 +60,7 @@ class MarketDataSeeder extends Seeder
}
} catch (\Throwable $e) {
throw new \Exception('Error: '.$e->getMessage());
throw new \Exception('Error: '.substr($e->getMessage(), 0, 250));
}
}
}