Skip to content

Commit

Permalink
chore: turns off log by default
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
  • Loading branch information
AlexsJones committed Nov 12, 2023
1 parent dde4344 commit 017c7f4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cmd/filters/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ var addCmd = &cobra.Command{
for _, filter := range availableFilters {
if filter == f {
foundFilter = true

// WARNING: This is to enable users correctly understand implications
// of enabling logs
if filter == "Log" {
color.Yellow("Warning: by enabling logs, you will be sending potentially sensitive data to the AI backend.")
}

break
}
}
Expand Down

0 comments on commit 017c7f4

Please sign in to comment.