Skip to content

Commit

Permalink
fix(logger): Fix reference to ruby Logger constant (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
2k-joker authored Jul 28, 2023
1 parent d4f4902 commit ec99bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/httpigeon/logger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def filter(body)
end

def log_to_stdout(log_data)
Logger.new($stdout).log(1, log_data.to_json)
::Logger.new($stdout).log(1, log_data.to_json)
end
end
end

0 comments on commit ec99bd5

Please sign in to comment.