Skip to content

Commit

Permalink
docs: mention INFO, DEBUG, TRACE differences
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jul 16, 2024
1 parent 51c7a63 commit 0ee537a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,9 @@ Neotest-golang piggybacks on the Neotest logger. You can enable it like so:
require("neotest.logging"):set_level(vim.log.levels.INFO)
```

Lower the log level further to `DEBUG` or `TRACE` to get even more information.
Lower the log level further to `DEBUG` to get even more information. The lowest
level is `TRACE`, but is not used by this adapter and is only useful when
debugging issues with Neotest.

You can get ahold of the log file's path using
`require("neotest.logging"):get_filename()`, which usually points to your
Expand Down Expand Up @@ -379,8 +381,7 @@ more information on this.

### Testify suites

> [!WARNING]
> This feature comes with some caveats and nuances, which is why it
> [!WARNING] This feature comes with some caveats and nuances, which is why it
> is not enabled by default. I advise you to only enable this if you need it.
There are some real shenaningans going on behind the scenes to make this work.
Expand All @@ -390,8 +391,7 @@ tree is modified by mutating private attributes and merging of nodes to avoid
duplicates. I'm personally a bit afraid of the maintenance burden of this
feature... 🙈

> [!NOTE]
> Right now, nested tests and table tests are not supported. All of this
> [!NOTE] Right now, nested tests and table tests are not supported. All of this
> can be remedied at any time by extending the treesitter queries. Feel free to
> dig in and open a PR!
Expand Down

0 comments on commit 0ee537a

Please sign in to comment.