use JSON::PP;
use IO::All;
use Module::Runtime qw( use_module );
+use Log::Contextual qw( :log );
my $_json = JSON::PP->new->utf8->relaxed->allow_nonref;
my ($id, $path) = @$dir_spec;
my $data = $self->_load_dataset($path, $required)
or next;
+ log_debug { "loading node '$id' from '$path'" };
$_->collect_from($id, $data)
for @generators;
}