Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Fixes

- (logs) Correct the severity query example ([#3387](https://github.com/getsentry/sentry-cli/pull/3387))

## 3.6.2

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion src/commands/logs/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub(super) struct ListLogsArgs {
max_rows: NonZeroUsize,

#[arg(long = "query", default_value = "", hide_default_value = true)]
#[arg(help = "Query to filter logs. Example: \"level:error\". \
#[arg(help = "Query to filter logs. Example: \"severity:error\". \
If omitted, no filtering is applied. \
See https://docs.sentry.io/concepts/search/ for syntax.")]
query: String,
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/_cases/logs/logs-list-help.trycmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Options:
Set the log output verbosity. [possible values: trace, debug, info, warn, error]

--query <QUERY>
Query to filter logs. Example: "level:error". If omitted, no filtering is applied. See
Query to filter logs. Example: "severity:error". If omitted, no filtering is applied. See
https://docs.sentry.io/concepts/search/ for syntax.

--live
Expand Down
Loading