mirror of
https://github.com/tappollo/WWDC.git
synced 2026-06-15 01:48:51 +08:00
16 lines
249 B
Swift
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
|
|
}
|