# File lib/phusion_passenger/union_station/transaction.rb, line 83
        def end_measure(name, error_encountered = false)
                times = Utils::NativeSupportUtils.process_times
                if error_encountered
                        message "FAIL: #{name} (#{current_timestamp.to_s(36)},#{times.utime.to_s(36)},#{times.stime.to_s(36)})"
                else
                        message "END: #{name} (#{current_timestamp.to_s(36)},#{times.utime.to_s(36)},#{times.stime.to_s(36)})"
                end
        end