From cc58025adfc926aaea8fd9aad490014ba8d92ec3 Mon Sep 17 00:00:00 2001 From: Emil Williams Date: Tue, 6 May 2025 13:06:18 -0600 Subject: [PATCH] -- --- perl/Triple.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/perl/Triple.pm b/perl/Triple.pm index c32a301..2e81c19 100644 --- a/perl/Triple.pm +++ b/perl/Triple.pm @@ -76,8 +76,10 @@ sub init { banana => 'sand', }; foreach (my ($path, @datum) = each %page) { - next if $datum[0] == DYNAMIC_PAGE; - syslog("info", "Marking Static $path"); + if ($datum[0] == DYNAMIC_PAGE) { + syslog("info", "Marking Dynamic '$path'"); + } + syslog("info", "Marking Static '$path'"); # $template->process($datum[1], $vars, \$_) or syslog("info", $template->error()); # $static{$path} = $_; } -- 2.47.3