atipugin/telegram-bot-ruby

View on GitHub
lib/telegram/bot/null_logger.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    class NullLogger < Logger
      def initialize(*); end # rubocop:disable Lint/MissingSuper

      def add(*); end
    end
  end
end