Skip to content

Commit

Permalink
fix logger exception (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
ganga1980 authored Feb 1, 2022
1 parent ec2b09f commit 5f41c5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def initialize(service_endpoint_uri, logger, proxy = {})
@service_endpoint_uri = service_endpoint_uri
@queue = nil
@send_buffer_size = 100
if !logger.nil? && !logger.empty?
if !logger.nil?
@logger = logger
else
@logger = Logger.new(STDOUT)
Expand Down

0 comments on commit 5f41c5e

Please sign in to comment.