22 lines
424 B
Swift
22 lines
424 B
Swift
//
|
|
// Logging.swift
|
|
// RxCocoa
|
|
//
|
|
// Created by Krunoslav Zaher on 4/3/15.
|
|
// Copyright (c) 2015 Krunoslav Zaher. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
// read your own configuration
|
|
public struct Logging {
|
|
public typealias LogURLRequest = (NSURLRequest) -> Bool
|
|
|
|
public static var URLRequests: LogURLRequest = { _ in
|
|
#if DEBUG
|
|
return true
|
|
#else
|
|
return false
|
|
#endif
|
|
}
|
|
} |