# File lib_core/rucy/logger.rb, line 70
    def messg(level, messg, format=true)
      if (level >= @level) then
        if (format) then
          @output.write("#{Time.now.httpdate}: #{messg}\n")
        else
          @output.write(messg)
        end
        @output.flush
      end
      nil
    end