# File lib/thin/logging.rb, line 156
    def log_error(msg, e=nil)
      log_msg = msg
      if e
        log_msg += ": #{e}\n\t" + e.backtrace.join("\n\t") + "\n"
      end
      Logging.log_msg(log_msg, Logger::ERROR)
    end