diff options
Diffstat (limited to '_includes/functions/log.html')
-rw-r--r-- | _includes/functions/log.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/_includes/functions/log.html b/_includes/functions/log.html new file mode 100644 index 0000000..b2a6130 --- /dev/null +++ b/_includes/functions/log.html @@ -0,0 +1,17 @@ +{% if include.level %} + {% assign level = include.level %} +{% endif %} + +{% if include.msg %} + {% assign msg = include.msg %} +{% endif %} + +{% if site.debug == true %} + {% if level == 'debug' %} + {% if jekyll.environment == "development" %} + <!-- {{ msg }} --> + {% endif %} + {% else %} + <!-- {{ msg }} --> + {% endif %} +{% endif %} |