.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. .. include:: ../../common.defs .. _developer-debug-tags: Debug Tags ********** Use the API macro ``Dbg(ctl, const char *format_str, ...)`` to add traces in your plugin. In this macro: - ``ctl`` is the Traffic Server parameter that enables Traffic Server to print out ``format_str``. It is an instance of the class ``DbgCtl``. - ``...`` are variables for ``format_str`` in the standard ``printf`` style. The ``DbgCtl`` control is enabled when debug output is enabled globally by configuration, and ``tag`` matches a configured regular expression. Run Traffic Server with the ``-Ttag`` option. For example, if the tag is ``my-plugin``, then the debug output goes to ``traffic.out.``\ See below: :: traffic_server -T"my-plugin" Sets the following variables in :file:`records.yaml` (in the Traffic Server ``config`` directory): .. code-block:: yaml ts: diags: debug: enabled: 1 tags: debug-tag-name In this case, debug output goes to ``traffic.out``. The statement ``"Starting my-plugin at