# File lib/bullet/notification/base.rb, line 27
      def whoami
        @user ||= ENV['USER'].presence || (begin
                                             `whoami`.chomp
                                           rescue StandardError
                                             ''
                                           end)
        if @user.present?
          "user: #{@user}"
        else
          ''
        end
      end