Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 223 Bytes

testflight.md

File metadata and controls

17 lines (14 loc) · 223 Bytes

TestFlight

To log with TestFlight vs. stdout:

def log(msg)
  if Object.const_defined?('TestFlight')
     TFLog(msg)
  else
    if DEBUG
      p "#{Time.stamp} log: #{msg}"
      $stdout.flush
    end
  end
end