From a7d8a2977d6110d1f8778b8ae02067982a5e43a7 Mon Sep 17 00:00:00 2001 From: jeffreytse Date: Tue, 29 Sep 2020 12:54:54 +0800 Subject: fix: some function params not working --- _includes/functions/log.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '_includes/functions/log.html') diff --git a/_includes/functions/log.html b/_includes/functions/log.html index b2a6130..95d1856 100644 --- a/_includes/functions/log.html +++ b/_includes/functions/log.html @@ -1,9 +1,9 @@ -{% if include.level %} - {% assign level = include.level %} +{% if include.params.level %} + {% assign level = include.params.level %} {% endif %} -{% if include.msg %} - {% assign msg = include.msg %} +{% if include.params.msg %} + {% assign msg = include.params.msg %} {% endif %} {% if site.debug == true %} -- cgit v1.2.3