This commit is contained in:
2023-10-02 23:47:01 +03:00
parent c6cb488379
commit 215d238505
4 changed files with 14 additions and 10 deletions
@@ -4,13 +4,13 @@ namespace Lucent;
use Illuminate\Routing\Router;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider as IlluminateServiceProvider;
use Illuminate\Support\ServiceProvider;
use Lucent\Channel\ChannelService;
use Lucent\Commands\CompileConfig;
use Lucent\Commands\RebuildThumbnails;
use Lucent\File\ImageService;
class ServiceProvider extends IlluminateServiceProvider
class LucentServiceProvider extends ServiceProvider
{
/**
* Register any application services.
+1 -1
View File
@@ -23,7 +23,7 @@ class StaticGenerator
public function recordIterator(callable $query, callable $parser, int $skip = 0): int
{
$limit = 100;
logger("fetching $skip");
// logger("fetching $skip");
$records = $query($limit, $skip);
$parser($records);