Skip to content

Commit 5e492b8

Browse files
authored
EventLogSubscriber: avoid flooding logs with forgotten "hello" (#51)
1 parent 9874154 commit 5e492b8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

example-project/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ group :test do
7171
gem "webdrivers"
7272
end
7373

74-
gem "logtail-rails", "~> 0.2.11"
74+
gem "logtail-rails", "~> 0.2.12"

lib/logtail-rails/event_log_subscriber.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def emit(event)
3737
}
3838

3939
message = build_log_message(event)
40-
logger.info("hello")
4140
logger.send(self.class.log_level, message, log_data)
4241
end
4342

lib/logtail-rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Logtail
22
module Integrations
33
module Rails
4-
VERSION = "0.2.11"
4+
VERSION = "0.2.12"
55
end
66
end
77
end

0 commit comments

Comments
 (0)