aboutsummaryrefslogtreecommitdiff
path: root/module/entry-points/html.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/entry-points/html.scm')
-rw-r--r--module/entry-points/html.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/module/entry-points/html.scm b/module/entry-points/html.scm
index c08dd72d..55fb0c94 100644
--- a/module/entry-points/html.scm
+++ b/module/entry-points/html.scm
@@ -2,6 +2,7 @@
:export (main)
:use-module (output html)
:use-module (util)
+ :use-module (util time)
:use-module (vcomponent)
:use-module (datetime)
:use-module (datetime util)
@@ -32,6 +33,9 @@
calendar-files: (cond [(option-ref opts 'file #f) => list]
[else (calendar-files)]) ))
+
+ (report-time! "Calendars loaded")
+
(if (option-ref opts 'chunked #f)
(html-chunked-main count calendars events start)
(html-generate calendars events start end render-calendar)))