module Logging

Public Instance Methods

log() click to toggle source
# File lib/string_length_conformable/logging.rb, line 4
  def log
    text = <<-TEXT
      \n
      #{'*' * 100}
      String is validated by gem string_length_conformable.
      for more info visit https://github.com/Yaponcik/string_length_conformable
      #{'*' * 100}
    TEXT
    Logger.new(STDOUT).info text
  end