Skip to content

Commit

Permalink
fix: send wanring and error text to instead of
Browse files Browse the repository at this point in the history
  • Loading branch information
drstrangelooker committed Aug 6, 2024
1 parent ddc3c0d commit 0ba321c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
gazer (0.3.16)
gazer (0.3.17)
faraday (~> 2.7.8)
faraday-multipart (~> 1.0)
looker-sdk (~> 0.1.6)
Expand Down
4 changes: 2 additions & 2 deletions lib/gzr/modules/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ def say_ok(data, output: $stdout)
output.puts pastel.green data
end

def say_warning(data, output: $stdout)
def say_warning(data, output: $stderr)
output.puts pastel.yellow data
end

def say_error(data, output: $stdout)
def say_error(data, output: $stderr)
output.puts pastel.red data
end

Expand Down

0 comments on commit 0ba321c

Please sign in to comment.