Skip to content

Commit 8b5e9e3

Browse files
author
Konstantin Kabanov
committed
readme update
1 parent df1b238 commit 8b5e9e3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Network activity logger for Alamofire.
88

99
## Requirements
1010

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+
1212
- Xcode 8.0+
13-
- Swift 3.0+
13+
- Swift 2.3
1414

1515
## Dependencies
1616

17-
- [Alamofire 4.0+](https://github.com/Alamofire/Alamofire)
17+
- [Alamofire 3.5+](https://github.com/Alamofire/Alamofire)
1818

1919
## Installation
2020

@@ -35,7 +35,7 @@ source 'https://github.com/CocoaPods/Specs.git'
3535
platform :ios, '10.0'
3636
use_frameworks!
3737

38-
pod 'AlamofireNetworkActivityLogger', '~> 2.0'
38+
pod 'AlamofireNetworkActivityLogger', '~> 1.0'
3939
```
4040

4141
Then, run the following command:
@@ -58,7 +58,7 @@ $ brew install carthage
5858
To integrate AlamofireNetworkActivityLogger into your Xcode project using Carthage, specify it in your `Cartfile`:
5959

6060
```ogdl
61-
github "konkab/AlamofireNetworkActivityLogger" ~> 2.0
61+
github "konkab/AlamofireNetworkActivityLogger" ~> 1.0
6262
```
6363

6464
---
@@ -68,7 +68,7 @@ github "konkab/AlamofireNetworkActivityLogger" ~> 2.0
6868
Add the following code to `AppDelegate.swift application:didFinishLaunchingWithOptions:`:
6969

7070
```swift
71-
NetworkActivityLogger.shared.startLogging()
71+
NetworkActivityLogger.sharedLogger.startLogging()
7272
```
7373

7474
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'
8181
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:
8282

8383
```swift
84-
NetworkActivityLogger.shared.level = .error
84+
NetworkActivityLogger.sharedLogger.level = .Error
8585
```
8686

8787
## Contact

Source/NetworkActivityLogger.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class NetworkActivityLogger {
5353
// MARK: - Properties
5454

5555
/// The shared network activity logger for the system.
56-
public static let shared = NetworkActivityLogger()
56+
public static let sharedLogger = NetworkActivityLogger()
5757

5858
/// The level of logging detail. See NetworkActivityLoggerLevel enum for possible values. .info by default.
5959
public var level: NetworkActivityLoggerLevel

0 commit comments

Comments
 (0)