log
Args:
msg
: The message (string) to loginfo
: If False, write to the log file. If True, write to both the log file and stdout (default=False)
Logs a line to either the log file or stdout.
Details
{% macro some_macro(arg1, arg2) %}
{{ log("Running some_macro: " ~ arg1 ~ ", " ~ arg2) }}
{% endmacro %}
0