@@ -8,13 +8,13 @@ Network activity logger for Alamofire.
8
8
9
9
## Requirements
10
10
11
- - iOS 9 .0+ / macOS 10.11 + / tvOS 9.0+ / watchOS 2.0+
11
+ - iOS 8 .0+ / Mac OS X 10.9 + / tvOS 9.0+ / watchOS 2.0+
12
12
- Xcode 8.0+
13
- - Swift 3.0+
13
+ - Swift 2.3
14
14
15
15
## Dependencies
16
16
17
- - [ Alamofire 4.0 +] ( https://github.com/Alamofire/Alamofire )
17
+ - [ Alamofire 3.5 +] ( https://github.com/Alamofire/Alamofire )
18
18
19
19
## Installation
20
20
@@ -35,7 +35,7 @@ source 'https://github.com/CocoaPods/Specs.git'
35
35
platform :ios , ' 10.0'
36
36
use_frameworks!
37
37
38
- pod ' AlamofireNetworkActivityLogger' , ' ~> 2 .0'
38
+ pod ' AlamofireNetworkActivityLogger' , ' ~> 1 .0'
39
39
```
40
40
41
41
Then, run the following command:
@@ -58,7 +58,7 @@ $ brew install carthage
58
58
To integrate AlamofireNetworkActivityLogger into your Xcode project using Carthage, specify it in your ` Cartfile ` :
59
59
60
60
``` ogdl
61
- github "konkab/AlamofireNetworkActivityLogger" ~> 2 .0
61
+ github "konkab/AlamofireNetworkActivityLogger" ~> 1 .0
62
62
```
63
63
64
64
---
@@ -68,7 +68,7 @@ github "konkab/AlamofireNetworkActivityLogger" ~> 2.0
68
68
Add the following code to ` AppDelegate.swift application:didFinishLaunchingWithOptions: ` :
69
69
70
70
``` swift
71
- NetworkActivityLogger.shared .startLogging ()
71
+ NetworkActivityLogger.sharedLogger .startLogging ()
72
72
```
73
73
74
74
Now all NSURLSessionTask objects created by an Alamofire.SessionManager will have their request and response logged to the console, a la:
@@ -81,7 +81,7 @@ GET 'http://example.com/foo/bar.json'
81
81
If the default logging level is too verbose—say, if you only want to know when requests fail—then changing it is as simple as:
82
82
83
83
``` swift
84
- NetworkActivityLogger.shared .level = .error
84
+ NetworkActivityLogger.sharedLogger .level = .Error
85
85
```
86
86
87
87
## Contact
0 commit comments