# 输出详细等级

> *译自：*[*Output verbosity*](https://github.com/sqlmapproject/sqlmap/wiki/Usage#output-verbosity)

选项：`-v`

该选项用于设置输出信息的详细等级，共有**七个**级别。默认级别为 **1**，输出包括普通信息，警告，错误，关键信息和 Python 出错回遡信息（如果有的话）。

* **0**：只输出 Python 出错回溯信息，错误和关键信息。
* **1**：增加输出普通信息和警告信息。
* **2**：增加输出调试信息。
* **3**：增加输出已注入的 payloads。
* **4**：增加输出 HTTP 请求。
* **5**：增加输出 HTTP 响应头
* **6**：增加输出 HTTP 响应内容。

使用等级 **2** 能更好地了解 sqlmap 内部实现了什么，尤其是在检测阶段和使用接管功能时。如果你想知道 sqlmap 发送了什么 SQL payloads，等级 **3** 是最佳选择。在你向开发者上报潜在的 bug 报告时，推荐使用这个等级，并确保附上使用选项 `-t` 生成的标准输出流量日志文件。

需要更深入地检测潜在 Bugs 或应对未知情况时，推荐使用 **4** 或以上等级。应当注意，还可以使用该选项的短名称来设置详细等级，其中提供的开关（而不是选项）用字母 `v` 的个数来确定详细等级（例如：用 `-v` 代替 `-v 2`，用 `-vv` 代替 `-v 3`，用 `-vvv` 代替 `-v 4`，依此类推）。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sqlmap.highlight.ink/usage/output-verbosity.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
