Skip to content

Commit

Permalink
DXCDT-304: Disable JSON flag for logs tail command (#595)
Browse files Browse the repository at this point in the history
Co-authored-by: Will Vedder <[email protected]>
  • Loading branch information
willvedd and willvedd authored Jan 11, 2023
1 parent 958543a commit cebf7f7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion docs/auth0_logs_tail.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ auth0 logs tail [flags]

```
-f, --filter string Filter in Lucene query syntax. See https://auth0.com/docs/logs/log-search-query-syntax for more details.
--json Output in json format.
-n, --number int Number of log entries to show. (default 100)
```

Expand Down
2 changes: 0 additions & 2 deletions internal/cli/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,6 @@ func tailLogsCmd(cli *cli) *cobra.Command {
logsFilter.RegisterString(cmd, &inputs.Filter, "")
logsNum.RegisterInt(cmd, &inputs.Num, 100)

cmd.Flags().BoolVar(&cli.json, "json", false, "Output in json format.")

return cmd
}

Expand Down

0 comments on commit cebf7f7

Please sign in to comment.