mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
11 lines
417 B
HTML
11 lines
417 B
HTML
|
|
{% extends "function.html.jinja" %}
|
||
|
|
|
||
|
|
{% block logs scoped %}
|
||
|
|
{{ super() }}
|
||
|
|
{# TODO: Switch to a warning after some time. #}
|
||
|
|
{{ log.info(
|
||
|
|
"DeprecationWarning: Extending '_base/function.html' is deprecated, extend '_base/function.html.jinja' instead. " ~
|
||
|
|
"After some time, this message will be logged as a warning, causing strict builds to fail.",
|
||
|
|
once=True,
|
||
|
|
) }}
|
||
|
|
{% endblock logs %}
|