Files
WWDC/PlayerUI/Util/DebugLog.swift
2017-05-15 13:48:26 -03:00

16 lines
249 B
Swift

//
// DebugLog.swift
// PlayerProto
//
// Created by Guilherme Rambo on 29/04/17.
// Copyright © 2017 Guilherme Rambo. All rights reserved.
//
import Foundation
func DebugLog(_ items: Any...) {
#if DEBUG
print(items)
#endif
}