Remove the condition for scheduling the flush and call lambda. #22
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I was assigning @flush_scheduled to true and did not call the scheduler if the flag was true. I removed this condition. And I also did not call lambda.
Jhonny noticed that he did not see the logs if he used the lib without options. The reason is that, he defines a small number for his buffer limit in the options and the logs got sent because the condition on the line 65 was satisfied. However, when he tried to log without passing the options, this condition was not satisfies because the default buffer size limit is larger than the string he attempted to send.
I tested it by initializing the logger without options
and setting options like this:
options = {
:hostname => 'rubyTestHost',
:ip => '75.10.4.81',
:mac => '00:00:00:a1:2b:cc',
:app => 'rubyApplication',
:level => "INFO",
:env => "PRODUCTION",
:endpoint => "https://logs.logdna.com/logs/ingest",
:flush_interval => 10,
:flush_size => 50000,
:retry_timeout => 60
}
$logger = Logdna::Ruby.new("73523d0836905067b4940f4a718940f9", options)