Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 831 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 831 Bytes

AppeliumXCGLogger

Appelium is a platform and a set of tools for improving the quality of mobile apps.

AppeliumXCGLogger is a XCGLogger extension that allows you you to route all logging calls to Appelium without changing your existing logging code.

Installation

CocoaPods

To integrate AppeliumCocoaLumberjack into your Xcode project using CocoaPods, add it to your Podfile:

pod 'AppeliumXCGLogger'

Then, run the following command:

$ pod install

Usage

  1. Import AppeliumXCGLogger into your app:

    import AppeliumXCGLogger
  2. Enable logging:

    let appeliumLogDestination = AppeliumLogDestination()
    XCGLogger.default.add(destination: appeliumLog)